summaryrefslogtreecommitdiff
path: root/js/CommonDialogs.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/CommonDialogs.js')
-rw-r--r--js/CommonDialogs.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/CommonDialogs.js b/js/CommonDialogs.js
index a9395d62e..9c6d1338b 100644
--- a/js/CommonDialogs.js
+++ b/js/CommonDialogs.js
@@ -184,7 +184,7 @@ const CommonDialogs = {
select.addOption({value: '', label: __("Expand to select feed")});
for (const feedUrl in feeds) {
- if (feeds.hasOwnProperty(feedUrl)) {
+ if (Object.prototype.hasOwnProperty.call(feeds, feedUrl)) {
select.addOption({value: feedUrl, label: feeds[feedUrl]});
}
}