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() {
484 */484 */
485function getOutletPrompt(key) {485function getOutletPrompt(key) {
486 const value = extension_prompts[inject_ids.CUSTOM_WI_OUTLET(key)]?.value;486 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 case487 return value || '';
488 return substituteParams(value);
489}488}
490489
491/**490/**