Remove recursive subtitution in getOutletPrompt
| @@ -484,8 +484,7 @@ function getTimeDiffMacro() { | |||
| 484 | */ | 484 | */ |
| 485 | function getOutletPrompt(key) { | 485 | function 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 case | 487 | return value || ''; |
| 488 | return substituteParams(value); | ||
| 489 | } | 488 | } |
| 490 | 489 | ||
| 491 | /** | 490 | /** |