1
0
mirror of https://github.com/ppy/osu.git synced 2024-05-14 13:10:20 +08:00

Fix NRT and add more safety

This commit is contained in:
Susko3 2023-01-22 23:11:50 +01:00
parent de21864bd1
commit e16105d059

View File

@ -38,10 +38,11 @@ namespace osu.Android
if (cursor == null)
return null;
cursor.MoveToFirst();
if (!cursor.MoveToFirst())
return null;
int filenameColumn = cursor.GetColumnIndex(IOpenableColumns.DisplayName);
string filename = cursor.GetString(filenameColumn);
string filename = cursor.GetString(filenameColumn) ?? uri.Path ?? string.Empty;
// SharpCompress requires archive streams to be seekable, which the stream opened by
// OpenInputStream() seems to not necessarily be.
@ -49,7 +50,12 @@ namespace osu.Android
var copy = new MemoryStream();
using (var stream = contentResolver.OpenInputStream(uri))
{
if (stream == null)
return null;
await stream.CopyToAsync(copy).ConfigureAwait(false);
}
return new AndroidImportTask(copy, filename, contentResolver, uri);
}