Skip to content

Commit

Permalink
fixed issue with dateformat value
Browse files Browse the repository at this point in the history
  • Loading branch information
gdlbo committed Jun 10, 2022
1 parent f7960b1 commit bdcb3db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/main/java/ru/vtosters/lite/utils/Preferences.java
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ public static String getLocale() {


public static boolean fulltime() {
return getPrefsValue(" ").equals("noyear") || getPrefsValue("dateformat").equals("full") || getPrefsValue("dateformat").equals("noseconds");
return getPrefsValue("dateformat").equals("noyear") || getPrefsValue("dateformat").equals("full") || getPrefsValue("dateformat").equals("noseconds");
}

public static String getDateFormat() {
Expand Down

0 comments on commit bdcb3db

Please sign in to comment.