Skip to content

Commit

Permalink
Merge pull request #38 from griffin-h/bugfix/treasuremap_https
Browse files Browse the repository at this point in the history
Update TreasureMap URL to https
  • Loading branch information
phycodurus authored Jun 5, 2024
2 parents afc0836 + b66665f commit 58a22fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tom_nonlocalizedevents/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,10 +91,10 @@ def treasuremap_url(self):
"""Construct and return the Treasure Map (treasuremap.space) URL for this nonlocalizedevent
from the event_id Field.
for example: http://treasuremap.space/alerts?graceids=S200219ac
for example: https://treasuremap.space/alerts?graceids=S200219ac
"""
# TODO: add check that superevent_type is GRAVITATIONAL_WAVE
return f"http://treasuremap.space/alerts?graceids={self.event_id}"
return f"https://treasuremap.space/alerts?graceids={self.event_id}"

@property
def hermes_url(self):
Expand Down

0 comments on commit 58a22fa

Please sign in to comment.