This commit is contained in:
Jonathan Carter 2016-03-15 13:46:54 -07:00
Родитель d5b86ec74b
Коммит 2626cf10d5
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -80,7 +80,7 @@ var CodePush = (function () {
};
if (remotePackageOrUpdateNotification) {
if (remotePackageOrUpdateNotification.updateAppVersion) {
CodePushUtil.logMessage("An update is available, but it is targetting a newer binary version than you are currently running.");
CodePushUtil.logMessage("An update is available, but it is targeting a newer binary version than you are currently running.");
appUpToDate();
}
else {

Просмотреть файл

@ -140,7 +140,7 @@ class CodePush implements CodePushCordovaPlugin {
if (remotePackageOrUpdateNotification) {
if ((<NativeUpdateNotification>remotePackageOrUpdateNotification).updateAppVersion) {
/* There is an update available for a different version. In the current version of the plugin, we treat that as no update. */
CodePushUtil.logMessage("An update is available, but it is targetting a newer binary version than you are currently running.");
CodePushUtil.logMessage("An update is available, but it is targeting a newer binary version than you are currently running.");
appUpToDate();
} else {
/* There is an update available for the current version. */