Remove recursive subtitution in getOutletPrompt

2929ae66ad1c974ea079ceeb8e0d0760e71bef73

Cohee <18619528+Cohee1207@users.noreply.github.com>

1 files changed, +1 -2Ignore whitespace
public/scripts/macros.js+1 -2
@@ -484,8 +484,7 @@ function getTimeDiffMacro() {
484484 */
485485function getOutletPrompt(key) {
486486 const value = extension_prompts[inject_ids.CUSTOM_WI_OUTLET(key)]?.value;
487- // Macros should already be parsed, but we'll do it again just in case
487+ return value || '';
488- return substituteParams(value);
489488}
490489
491490/**