Skip to content

Commit

Permalink
dynamicConfig: fix error message translation
Browse files Browse the repository at this point in the history
This was made translatable in 36a1aaf, but I overwrote it when I merged with 14e8a67 and I must have incorrectly resolved the merge conflicts for this line in particular.
  • Loading branch information
JGreenlee committed Jun 29, 2023
1 parent 7ad16ed commit 7534f86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion www/js/config/dynamic_config.js
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ angular.module('emission.config.dynamic', ['emission.plugin.logger'])
$rootScope.$apply(() => dc.saveAndNotifyConfigReady(existingConfig));
}
}).catch((err) => {
Logger.displayError('Error loading config on app start', err)
Logger.displayError(i18next.t('config.loading-config-app-start', err))
});
};
$ionicPlatform.ready().then(function() {
Expand Down

0 comments on commit 7534f86

Please sign in to comment.