mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-02-10 02:15:12 +01:00
Update MediaBrowser.Common/Plugins/LocalPlugin.cs
Co-authored-by: BaronGreenback <jimcartlidge@yahoo.co.uk>
This commit is contained in:
parent
53d8023def
commit
ee976bb47a
1 changed files with 1 additions and 1 deletions
|
|
@ -69,7 +69,7 @@ namespace MediaBrowser.Common.Plugins
|
|||
/// <returns>Comparison result.</returns>
|
||||
public static bool operator !=(LocalPlugin left, LocalPlugin right)
|
||||
{
|
||||
return !(left == right);
|
||||
return !left.Equals(right);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
|
|||
Loading…
Reference in a new issue