diff options
| author | TheFrenchGhosty <47571719+TheFrenchGhosty@users.noreply.github.com> | 2021-06-19 07:45:33 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-06-19 07:45:33 +0000 |
| commit | c33ee83d87346d945d0c49447918303d502e291d (patch) | |
| tree | 862b6e63ffdfb523bed182881a8fa3ae594debdd /src | |
| parent | 835dd1abcc28cfc1622efd4f58634b026029d7d9 (diff) | |
| parent | ca5d5668d9687ea57d880bcda259a156443c5180 (diff) | |
| download | invidious-c33ee83d87346d945d0c49447918303d502e291d.tar.gz invidious-c33ee83d87346d945d0c49447918303d502e291d.tar.bz2 invidious-c33ee83d87346d945d0c49447918303d502e291d.zip | |
Merge pull request #2124 from raycheung/master
Fix storyboard when proxied with an external port
Diffstat (limited to 'src')
| -rw-r--r-- | src/invidious/helpers/utils.cr | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/invidious/helpers/utils.cr b/src/invidious/helpers/utils.cr index 20107fad..66ad6961 100644 --- a/src/invidious/helpers/utils.cr +++ b/src/invidious/helpers/utils.cr @@ -298,7 +298,7 @@ def make_host_url(kemal_config) # Add if non-standard port if port != 80 && port != 443 - port = ":#{kemal_config.port}" + port = ":#{port}" else port = "" end |
