Merge branch 'main' of gitlab.com:bashrc2/epicyon

merge-requests/30/head
Bob Mottram 2022-06-16 11:58:15 +01:00
commit 418d1b8bef
3 changed files with 6 additions and 4 deletions

View File

@ -5,7 +5,7 @@
--day-number: #dddddd;
--day-number2: #bbbbbb;
--time-color: #aaa;
--place-color: black;
--place-color: lightblue;
--event-color: grey;
--event-public-color: #282c37;
--today-foreground: black;

View File

@ -18,10 +18,12 @@ from utils import save_json
def _geocoords_from_osm_link(url: str, osm_domain: str) -> (int, float, float):
"""Returns geocoordinates from an OSM map link
"""
if osm_domain + '/#map=' not in url:
if osm_domain not in url:
return None, None, None
if '#map=' not in url:
return None, None, None
coords_str = url.split(osm_domain + '/#map=')[1]
coords_str = url.split('#map=')[1]
if '/' not in coords_str:
return None, None, None

View File

@ -165,7 +165,7 @@
"vcard-icon-size-mobile": "80px",
"vcard-icon-size-tiny": "80px",
"lines-color": "grey",
"place-color": "black",
"place-color": "lightblue",
"event-color": "grey",
"event-public-color": "#282c37",
"today-foreground": "black",