more changes for envs

This commit is contained in:
creme 2019-10-05 18:47:27 +02:00
parent 58de471ca8
commit 9595c2b9d7
No known key found for this signature in database
GPG Key ID: C147C3B7FBDF08D0
1 changed files with 6 additions and 4 deletions

View File

@ -136,7 +136,7 @@ def shorten(url):
gopher = "gopher://"
length = len(gopher)
if url[:length] == gopher:
url = "https://gopher.tilde.team/{}".format(url[length:])
url = "https://gopher.envs.net/{}".format(url[length:])
if len(url) > app.config["MAX_URL_LENGTH"]:
abort(414)
@ -243,7 +243,7 @@ def store_url(url, addr):
gopher = "gopher://"
length = len(gopher)
if url[:length] == gopher:
url = "https://gopher.tilde.team/{}".format(url[length:])
url = "https://gopher.envs.net/{}".format(url[length:])
if is_fhost_url(url):
return segfault(508)
@ -461,13 +461,15 @@ please allow up to 24 hours for a response.
<!-- UPLOAD -->
<div id="sidebar">
<pre class="sidebar"><blockquote>
<div class="block">
<pre>
<h3>UPLOAD DIRECTLY</h3>
<form action="{0}" method="POST" enctype="multipart/form-data">
<label for="file">File:</label>
<input class="form-control" type="file" name="file" style="width:250px;">
<input class="form-control" type="submit" value="Submit">
</form></blockquote></pre>
</form></pre>
</div>
</div>
</div>