Skip to content
This repository has been archived by the owner on Feb 28, 2022. It is now read-only.

Fix release warning #51

Merged
merged 1 commit into from
Dec 5, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions Emby.AutoOrganize/Data/SqliteExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

using System;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using System.Globalization;
using System.IO;
using MediaBrowser.Model.Serialization;
Expand Down Expand Up @@ -182,6 +183,7 @@ public static Guid GetGuid(this IReadOnlyList<IResultSetValue> result, int index
return result[index].ReadGuidFromBlob();
}

[SuppressMessage("Microsoft.Performance", "CA1801:MustUseParameter", MessageId = "name", Justification = "Used only in debug.")]
private static void ThrowInvalidParamName(string name)
{
#if DEBUG
Expand Down