mirror of
https://github.com/FoggedLens/iD.git
synced 2026-02-12 16:52:50 +00:00
only show "privacy policy updated" if user had already seen one before
see #10290
This commit is contained in:
@@ -17,7 +17,7 @@ export function uiSplash(context) {
|
||||
let updateMessage = '';
|
||||
const sawPrivacyVersion = prefs('sawPrivacyVersion');
|
||||
let showSplash = !prefs('sawSplash');
|
||||
if (sawPrivacyVersion !== context.privacyVersion) {
|
||||
if (sawPrivacyVersion && sawPrivacyVersion !== context.privacyVersion) {
|
||||
updateMessage = t('splash.privacy_update');
|
||||
showSplash = true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user