summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2022-05-21 14:20:43 +0100
committerDan Goodliffe <dan@randomdan.homeip.net>2022-05-21 14:20:43 +0100
commit45c0b3ce955c18f8562bc115acc61b500ca87e9b (patch)
tree4ed139710e7c5007cf301a719c69fd249b17c246
parentFix typo and link (diff)
downloadtoy-45c0b3ce955c18f8562bc115acc61b500ca87e9b.zip
Fix call to useUrl for webpage
-rw-r--r--scripts/toy/misc.groovy2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/toy/misc.groovy b/scripts/toy/misc.groovy
index 6696f56..40c902e 100644
--- a/scripts/toy/misc.groovy
+++ b/scripts/toy/misc.groovy
@@ -7,7 +7,7 @@
};
toy.addNamedEvent(toy.PERMIT, { name, arg, schedTime, rt -> toy.givePermission(arg) });
- toy.addRequestable("faq", "FAQ (webpage)", { useUrl("http://toy.randomdan.homeip.net/"); });
+ toy.addRequestable("faq", "FAQ (webpage)", { toy.useUrl("http://toy.randomdan.homeip.net/"); });
toy.addActivity("intNothing", { toy.intNothing() }, [[toy.TITS]], [toy.INT]);
return null;
}