Improve splitting out of link handling

This commit is contained in:
Dean Herbert
2019-10-31 18:34:41 +09:00
parent 83abb845b6
commit 11447023eb
6 changed files with 40 additions and 46 deletions

View File

@ -21,7 +21,7 @@ namespace osu.iOS
if (url.IsFileUrl)
Task.Run(() => game.Import(url.Path));
else
Task.Run(() => game.HandleUrl(url.AbsoluteString));
Task.Run(() => game.HandleLink(url.AbsoluteString));
return true;
}
}