From b4574497e64b6ae3a7cd91f253eeec12101e0f38 Mon Sep 17 00:00:00 2001 From: redxef Date: Sun, 27 Oct 2024 00:29:56 +0200 Subject: [PATCH] feat: add neq. --- Jellyfin.Plugin.SmartPlaylist/Lisp/Interpreter.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jellyfin.Plugin.SmartPlaylist/Lisp/Interpreter.cs b/Jellyfin.Plugin.SmartPlaylist/Lisp/Interpreter.cs index 6d09b4a..76d0fbf 100644 --- a/Jellyfin.Plugin.SmartPlaylist/Lisp/Interpreter.cs +++ b/Jellyfin.Plugin.SmartPlaylist/Lisp/Interpreter.cs @@ -112,6 +112,7 @@ namespace Jellyfin.Plugin.SmartPlaylist.Lisp { this["<="] = _le; this["eq?"] = _eq; this["="] = _eq; + this["!="] = _ne; this["abs"] = _abs; this["append"] = _append; this["begin"] = _begin; @@ -123,7 +124,6 @@ namespace Jellyfin.Plugin.SmartPlaylist.Lisp { this["haskeys"] = _haskeys; this["getitems"] = _getitems; this["invoke"] = _invoke; - //this[new Symbol("!=")] = _ne; } private static T _agg(Func op, IList args) {