blck

ephemeral pastebin/url shortener
git clone https://git.parazyd.org/blck
Log | Files | Refs | README | LICENSE

commit 54f6b03ad31c19d944d4caf81d8b6b03a49834c5
parent b582e5737b0f63ef174054d42fad74987b14164f
Author: parazyd <parazyd@dyne.org>
Date:   Mon, 20 Mar 2017 02:09:32 +0100

raise limit

Diffstat:
Mblck.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/blck.py b/blck.py @@ -38,7 +38,7 @@ def s(): if not url: return "invalid data\n" - if len(url) > 256: + if len(url) > 1024: return "url too long\n" ## taken from django