diff --git a/changedetectionio/store.py b/changedetectionio/store.py index d7f09f814..464e588b5 100644 --- a/changedetectionio/store.py +++ b/changedetectionio/store.py @@ -253,6 +253,12 @@ class ChangeDetectionStore: url = self.data['watching'][uuid].get('url') extras = deepcopy(self.data['watching'][uuid]) new_uuid = self.add_watch(url=url, extras=extras) + watch = self.data['watching'][new_uuid] + + if self.data['settings']['application'].get('extract_title_as_title') or watch['extract_title_as_title']: + # Because it will be recalculated on the next fetch + self.data['watching'][new_uuid]['title'] = None + return new_uuid def url_exists(self, url):