From d3536e6741351fb13a9f6a327637bc2a4619fea4 Mon Sep 17 00:00:00 2001 From: clsr Date: Tue, 15 Nov 2016 16:57:51 +0100 Subject: Move storage to its own package --- website.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'website.go') diff --git a/website.go b/website.go index 7cc32c1..cf10586 100644 --- a/website.go +++ b/website.go @@ -80,8 +80,8 @@ func newContext() pageContext { SiteName: siteName, Abuse: abuseMail, Contact: contactMail, - MaxSizeBytes: storage.MaxSize, - MaxSize: humanize(storage.MaxSize), + MaxSizeBytes: uploads.MaxSize, + MaxSize: humanize(uploads.MaxSize), Pages: pages, } } -- cgit