Open
Description
Feature proposal
- Firebase Component: Remote Config
I've noticed that remote config updates rely on the lastApplyTimeInterval
and lastETagUpdateTime
.
This means that if a user changes a date in their phone to a future date (for whatever reason), run an app and got a remote config update, it will set lastApplyTimeInterval
to future timestamp:
Then if they change a date to the real one (which in that case is an earlier one) then any new remote config updates will be ignored due to this check:
firebase-ios-sdk/FirebaseRemoteConfig/Sources/FIRRemoteConfig.m
Lines 296 to 299 in a2fbd12
This means users will be unable to activate any future remote config updates up to that future date they had set unless they reinstall the app.
Wouldn't it be better if the remote config updates relied only on some config version check which I guess could be the etag itself?