Skip to content

Commit

Permalink
[Mobile] Fixed issue with displaying "What's New" Dialog since releas…
Browse files Browse the repository at this point in the history
…e v0.100.
  • Loading branch information
thecosmicfrog committed Jan 9, 2018
1 parent 3d8e760 commit c5f1960
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,8 @@ private void showWhatsNewDialog() {
* comes from shared preferences. The value from strings.xml should be considered the
* definitive value.
*/
String appVersionCurrent = getString(R.string.version_name);
String appVersionCurrent =
getString(R.string.version_name).replace(".", "");
String appVersionSaved =
Preferences.currentAppVersion(getApplicationContext());

Expand Down

0 comments on commit c5f1960

Please sign in to comment.