Skip to content

Commit

Permalink
Merge pull request #1517 from Microsoft/dev
Browse files Browse the repository at this point in the history
Fix status message when new version is available
  • Loading branch information
ralarcon authored Nov 30, 2017
2 parents 50649f7 + 32d8a00 commit e59ee78
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions code/src/UI/Extensions/SyncStatusExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,10 @@ private static string GetResourceString(this SyncStatus status)
return StringRes.StatusPrepared;
case SyncStatus.NewVersionAvailable:
return StringRes.StatusNewVersionAvailable;
case SyncStatus.OverVersion:
return StringRes.StatusOverVersionContent;
case SyncStatus.OverVersionNoContent:
return StringRes.StatusOverVersionNoContent;
default:
return string.Empty;
}
Expand Down

0 comments on commit e59ee78

Please sign in to comment.