should fix null ref on Getting Exit adjustments

This commit is contained in:
CWX
2025-04-07 14:15:12 +01:00
parent 660e41a0f0
commit 213e61022e
@@ -304,6 +304,6 @@ public class RaidTimeAdjustmentService(
result.Add(exitChange);
}
return result.Count > 0 ? result : null;
return result;
}
}