Removed loose whitespace and one .ToArray() call.

pull/726/head
Erwin de Haan 5 years ago
parent 1d1d7e8a37
commit 838541b825

@ -209,7 +209,6 @@ namespace Emby.Server.Implementations.AppBase
protected void EnsureWriteAccess(string path)
{
var file = Path.Combine(path, Guid.NewGuid().ToString());
File.WriteAllText(file, string.Empty);
FileSystem.DeleteFile(file);
}

@ -143,7 +143,7 @@ namespace Emby.Server.Implementations.ScheduledTasks
Directory.CreateDirectory(parentPath);
string text = string.Join("|", previouslyFailedImages.ToArray());
string text = string.Join("|", previouslyFailedImages);
File.WriteAllText(failHistoryPath, text);
}

Loading…
Cancel
Save