Skip to content

Commit 9bf1b8e

Browse files
committed
Fixed loading bug for taking >5 seconds
1 parent 54fdd53 commit 9bf1b8e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

MiniMediaScanner/Services/FileMetaDataService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public class FileMetaDataService
2020

2121
public async Task<MetadataInfo> GetMetadataInfoAsync(FileInfo fileInfo)
2222
{
23-
Track trackInfo = new Track();
23+
Track trackInfo = default(Track);
2424
CancellationTokenSource cancellationToken = new CancellationTokenSource();
2525
var readRask = Task.Run(() =>
2626
{

0 commit comments

Comments
 (0)