Skip to content

Commit

Permalink
Merge pull request #1696 from IFRCGo/fix/double-https
Browse files Browse the repository at this point in the history
Avoid double https prefix in project update notifications
  • Loading branch information
szabozoltan69 authored Mar 1, 2023
2 parents 1719237 + 5ed8614 commit 6b2d120
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main/frontend.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@


def get_project_url(id):
return f'https://{settings.FRONTEND_URL}/three-w/{id}/'
return f'{settings.FRONTEND_URL}/three-w/{id}/'


def get_flash_update_url(id):
Expand Down

0 comments on commit 6b2d120

Please sign in to comment.