Add missing gitClone

This commit is contained in:
Vishesh Handa
2022-06-29 13:46:49 +02:00
parent dfbbac5a27
commit 151b44ed5e

View File

@ -45,6 +45,11 @@ static FlutterMethodChannel* gitChannel = 0;
[self handleMethodCallAsync:call result:result];
});
}
else if ([@"gitClone" isEqualToString:method]) {
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
[self handleMethodCallAsync:call result:result];
});
}
else if ([@"gitMerge" isEqualToString:method]) {
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
[self handleMethodCallAsync:call result:result];