Skip to content

Commit

Permalink
misc: ':' -> '?'
Browse files Browse the repository at this point in the history
  • Loading branch information
MATRIX-feather committed Nov 22, 2024
1 parent a25b67c commit 3f5448a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public class StateNameProvider extends MorphPluginObject implements IPlaceholder

if (param.startsWith("provider_is"))
{
var spilt = param.split(":", 2);
var spilt = param.split("\\?", 2);
if (spilt.length < 2) return "false";

var namespace = spilt[1];
Expand All @@ -61,7 +61,7 @@ public class StateNameProvider extends MorphPluginObject implements IPlaceholder

if (param.startsWith("id_is"))
{
var spilt = param.split(":", 2);
var spilt = param.split("\\?", 2);
if (spilt.length < 2) return "false";

return state != null
Expand Down

0 comments on commit 3f5448a

Please sign in to comment.