diff --git a/src/web/price-check/price-prediction/poeprices.ts b/src/web/price-check/price-prediction/poeprices.ts index 25502cae..3244998f 100644 --- a/src/web/price-check/price-prediction/poeprices.ts +++ b/src/web/price-check/price-prediction/poeprices.ts @@ -104,5 +104,7 @@ function querystring (q: Record) { */ function transformItemText (rawText: string) { // this may not account for all cases - return rawText.replace(/(?<=\d)(\([^)]+\))/gm, '') + return rawText + .replace(/(?<=\d)(\([^)]+\))/gm, '') + .replace(/^\{.+\}$\n/gm, '') }