From 8e49a333c3f01e1250b4794ead086241e4d2fdb8 Mon Sep 17 00:00:00 2001 From: Qrakhen Date: Fri, 5 Dec 2025 14:44:41 +0100 Subject: [PATCH] fix stack issue right at init --- Qrakhen.Qamp.Core/Execution/Runner.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Qrakhen.Qamp.Core/Execution/Runner.cs b/Qrakhen.Qamp.Core/Execution/Runner.cs index 073a3c1..69b8d91 100644 --- a/Qrakhen.Qamp.Core/Execution/Runner.cs +++ b/Qrakhen.Qamp.Core/Execution/Runner.cs @@ -56,7 +56,7 @@ public class Runner : IDisposable #if LOG _logger.Method(); #endif - if (Stack.Position < 0) { + if (Stack.Position != 0) { #if LOG _logger.Warn($"Something went wrong, stack cursor is at {Stack.Position}. Resetting Stack."); #endif