[iOS] Fix Invalid character error

This commit is contained in:
Alexander Boriskov 2019-11-05 18:18:28 +03:00 committed by Aleksey Belousov
parent 280bd94581
commit d17d75c8d6

View file

@ -5,7 +5,7 @@ extension MWMCategory {
if (bookmarksCount > 0 && trackCount > 0) ||
(bookmarksCount == 0 && trackCount == 0) {
return String(format: L("objects"), bookmarksCount + trackCount)
} else if (bookmarksCount > 0) {
} else if (bookmarksCount > 0) {
return String(format: L("bookmarks_places"), bookmarksCount)
} else {
return String(format: L("tracks"), trackCount)