Explorar o código

Fix #18314: Use get to avoid KeyError

Tobias Genannt hai 1 ano
pai
achega
4ae5529362
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      netbox/extras/dashboard/widgets.py

+ 1 - 1
netbox/extras/dashboard/widgets.py

@@ -314,7 +314,7 @@ class RSSFeedWidget(DashboardWidget):
         return f'dashboard_rss_{url_checksum}'
 
     def get_feed(self):
-        if self.config['requires_internet'] and settings.ISOLATED_DEPLOYMENT:
+        if self.config.get('requires_internet') and settings.ISOLATED_DEPLOYMENT:
             return {
                 'isolated_deployment': True,
             }