2
0
mirror of synced 2025-02-04 02:23:48 +00:00

Merge pull request #289 from akshetpandey/master

Fix incorrect status message when remote config fetch is successful
This commit is contained in:
Michael Diarmid 2017-07-30 02:00:58 +01:00 committed by GitHub
commit 0570095c16

View File

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