Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disable GCVote for all users (+ per default) (rel. to #13599) #13615

Merged
merged 1 commit into from
Nov 6, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion main/res/values/preference_keys.xml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@

<!-- settings for gcvote.com screen -->
<string translatable="false" name="preference_screen_gcvote">preference_screen_gcvote</string>
<string translatable="false" name="pref_ratingwanted">ratingwanted</string>
<string translatable="false" name="pref_ratingwanted">useGCVote</string>
<string translatable="false" name="pref_fakekey_gcvote_authorization">fakekey_gcvote_authorization</string>
<string translatable="false" name="pref_fakekey_gcvote_website">fakekey_gcvote_website</string>

Expand Down
2 changes: 1 addition & 1 deletion main/res/xml/preferences_services_gcvote_com.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
android:title="@string/settings_settings"
app:iconSpaceReserved="false" >
<CheckBoxPreference
android:defaultValue="true"
android:defaultValue="false"
android:key="@string/pref_ratingwanted"
android:summary="@string/init_summary_ratingwanted"
android:title="@string/init_ratingwanted"
Expand Down
2 changes: 1 addition & 1 deletion main/src/cgeo/geocaching/settings/Settings.java
Original file line number Diff line number Diff line change
Expand Up @@ -901,7 +901,7 @@ public static boolean isStoreLogImages() {
}

public static boolean isRatingWanted() {
return getBoolean(R.string.pref_ratingwanted, true);
return getBoolean(R.string.pref_ratingwanted, false);
}

public static boolean isGeokretyConnectorActive() {
Expand Down