Merge pull request #289 from akshetpandey/master
Fix incorrect status message when remote config fetch is successful
This commit is contained in:
commit
0570095c16
|
@ -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:
|
||||||
|
|
Loading…
Reference in New Issue