diff --git a/changedetectionio/processors/restock_diff/forms.py b/changedetectionio/processors/restock_diff/forms.py index 6ee452206..825edff3f 100644 --- a/changedetectionio/processors/restock_diff/forms.py +++ b/changedetectionio/processors/restock_diff/forms.py @@ -53,11 +53,11 @@ class processor_settings_form(processor_text_json_diff_form): When OFF - Only care about restock detection
- {{ render_field(form.restock_settings.price_change_min, placeholder=watch['restock'].get('price')) }} + {{ render_field(form.restock_settings.price_change_min, placeholder=watch.get('restock', {}).get('price')) }} Minimum amount, only trigger a change when the price is less than this amount.
- {{ render_field(form.restock_settings.price_change_max, placeholder=watch['restock'].get('price')) }} + {{ render_field(form.restock_settings.price_change_max, placeholder=watch.get('restock', {}).get('price')) }} Maximum amount, only trigger a change when the price is more than this amount.