You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Wrong currency in the price-selection modal on stores that emit
canonical schema.org markup (<meta itemprop="price" content="X">
plus <meta itemprop="priceCurrency" content="EUR">). The generic
CSS candidate extractor read the numeric content attribute, found
no symbol, and parsePrice() defaulted to USD — so the modal
preview showed $ even on EUR/GBP/etc. stores. The post-confirm
scrape used a different code path that did find the symbol, so the
saved row was correct, but the modal was misleading. The extractor
now falls back to the companion [itemprop="priceCurrency"], then
OpenGraph product:price:currency / og:price:currency, before
accepting the USD default.