Skip to content

Commit

Permalink
Merge pull request #43 from nodes-ios/develop
Browse files Browse the repository at this point in the history
Filename fix
  • Loading branch information
Chris authored Mar 20, 2020
2 parents 38cd04d + f0a3e62 commit 147d1cc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -759,7 +759,7 @@ public class LocalizationManager<Language, Descriptor: LocalizationDescriptor> w
// Iterate through bundle until we find the localizations file
for bundle: Bundle in [Bundle(for: localizableModel.self)] + contextRepository.getLocalizationBundles() {
// Check if bundle contains localizations file, otheriwse continue with next bundle
guard let filePath = bundle.path(forResource: "Localization_\(localeId)", ofType: "json") else {
guard let filePath = bundle.path(forResource: "Localizations_\(localeId)", ofType: "json") else {
continue
}

Expand Down

0 comments on commit 147d1cc

Please sign in to comment.