Browse Source

[fix] some isp doesn't have website url, they should feel bad

Laurent Peuch 9 years ago
parent
commit
b127289593
1 changed files with 1 additions and 1 deletions
  1. 1 1
      ffdnispdb/views.py

+ 1 - 1
ffdnispdb/views.py

@@ -85,7 +85,7 @@ def isp_map_data_cube():
         d['ffdn_member'] = isp.is_ffdn_member
         d['has_vpn'] = isp.has_technology("vpn")
         d['distribute_cube'] = isp.has_technology("cube")
-        d['url'] = isp.json["website"]
+        d['url'] = isp.json.get("website", "")
         d['popup'] = render_template('map_popup.html', isp=isp)
         data.append(d)