[ios][config] Fix fetch handler typo

This commit is contained in:
Elliot Hesp 2017-05-22 10:38:39 +01:00 committed by GitHub
parent 07a7f863f6
commit 22a6ac1b07
1 changed files with 5 additions and 5 deletions

View File

@ -17,15 +17,15 @@ NSString *convertFIRRemoteConfigFetchStatusToNSString(FIRRemoteConfigFetchStatus
{
switch(value){
case FIRRemoteConfigFetchStatusNoFetchYet:
return @"remoteConfitFetchStatusNoFetchYet";
return @"remoteConfigFetchStatusNoFetchYet";
case FIRRemoteConfigFetchStatusSuccess:
return @"remoteConfitFetchStatusSuccess";
return @"remoteConfigFetchStatusSuccess";
case FIRRemoteConfigFetchStatusFailure:
return @"remoteConfitFetchStatusFailure";
return @"remoteConfigFetchStatusFailure";
case FIRRemoteConfigFetchStatusThrottled:
return @"remoteConfitFetchStatusThrottled";
return @"remoteConfigFetchStatusThrottled";
default:
return @"remoteConfitFetchStatusFailure";
return @"remoteConfigFetchStatusFailure";
}
}