Skip to content

Commit

Permalink
fix: 修复一处 iOS 编译报错
Browse files Browse the repository at this point in the history
  • Loading branch information
airingursb authored and andycall committed Aug 25, 2021
1 parent cb4b4bf commit 25ef1f4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions kraken/ios/Classes/KrakenPlugin.m
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@ - (void)handleMethodCall:(FlutterMethodCall*)call result:(FlutterResult)result {
} else {
result(FlutterMethodNotImplemented);
}
}

- (NSString*) getTemporaryDirectory {
NSArray<NSString *>* paths = NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES);
return paths.firstObject;
}
- (NSString*) getTemporaryDirectory {
NSArray<NSString *>* paths = NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES);
return paths.firstObject;
}

@end

0 comments on commit 25ef1f4

Please sign in to comment.