2
0
mirror of synced 2025-02-12 22:36:43 +00:00

Fix incorrect status message when remote config fetch is successful

This commit is contained in:
Akshet Pandey 2017-07-29 15:59:17 -07:00
parent d7275edc75
commit 6375f32c35

View File

@ -10,8 +10,8 @@ NSString *convertFIRRemoteConfigFetchStatusToNSString(FIRRemoteConfigFetchStatus
switch(value){ switch(value){
case FIRRemoteConfigFetchStatusNoFetchYet: case FIRRemoteConfigFetchStatusNoFetchYet:
return @"config/no_fetch_yet"; return @"config/no_fetch_yet";
case FIRRemoteConfigFetchStatusFailure: case FIRRemoteConfigFetchStatusSuccess:
return @"config/failure"; return @"config/success";
case FIRRemoteConfigFetchStatusThrottled: case FIRRemoteConfigFetchStatusThrottled:
return @"config/throttled"; return @"config/throttled";
default: default: