Skip to content

Commit

Permalink
Spelling fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
da3dsoul committed Jan 20, 2024
1 parent 6ffbc6d commit 78cd70c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Shoko.Server/Utilities/AVDumpHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -135,13 +135,13 @@ public static bool UpdateAVDump() =>
/// Run AVDump for a file, streaming events from the process, and also
/// storing some results in the database if successful.
/// </summary>
/// <param name="videos">The assosiated video for the file.</param>
/// <param name="videos">The associated video for the file.</param>
/// <param name="commandId">The command id if this operation was ran from
/// the queue.</param>
/// <returns>The dump results for v1 compatibility.</returns>
public static AVDumpSession DumpFiles(IEnumerable<KeyValuePair<int, string>> videos, int? commandId = null)
{
// Guard against stupidity and/or unforseen errors.
// Guard against stupidity and/or unforeseen errors.
var videoDict = videos.ToDictionary(v => v.Key, v => v.Value);
if (videoDict.Count == 0)
return new("Cannot dump 0 files.");
Expand Down

0 comments on commit 78cd70c

Please sign in to comment.