From 7def4f222db7c98aec0453b45a86b3113f065c00 Mon Sep 17 00:00:00 2001 From: Uncled1023 Date: Fri, 28 Oct 2016 16:35:08 -0700 Subject: [PATCH] Fixed max upload size being int instead of long. --- Teknik/Configuration/UploadConfig.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Teknik/Configuration/UploadConfig.cs b/Teknik/Configuration/UploadConfig.cs index f9ea7bd..ac500b8 100644 --- a/Teknik/Configuration/UploadConfig.cs +++ b/Teknik/Configuration/UploadConfig.cs @@ -11,7 +11,7 @@ namespace Teknik.Configuration public bool UploadEnabled { get; set; } public bool DownloadEnabled { get; set; } // Max upload size in bytes - public int MaxUploadSize { get; set; } + public long MaxUploadSize { get; set; } // Location of the upload directory public string UploadDirectory { get; set; } // File Extension for saved files