Fixing AIS info bubbles.

This commit is contained in:
Marat Fayzullin 2023-10-22 11:21:11 -04:00
parent 932b745cbb
commit 3ac53eb54a
1 changed files with 1 additions and 1 deletions

View File

@ -544,7 +544,7 @@ AprsMarker.prototype.getInfoHTML = function(name, receiverMarker = null) {
}
if (this.mode === 'AIS') {
var country = Utils.mid2country(name);
var country = Utils.mmsi2country(name);
if (country) {
detailsString += Utils.makeListItem('Country', Utils.truncate(country, 24));
}