From: Kimura Youichi Date: Thu, 10 Nov 2016 14:05:41 +0000 (+0900) Subject: タイムアウト設定に指定可能な秒数の上限を120秒から1000秒に変更 X-Git-Tag: OpenTween_v1.3.6~6 X-Git-Url: http://git.osdn.net/view?p=opentween%2Fopen-tween.git;a=commitdiff_plain;h=18c8ce45449b8f5d5ff317c5df97f6426aeb1139 タイムアウト設定に指定可能な秒数の上限を120秒から1000秒に変更 上り 128kbps の回線であっても 1,000 秒あれば 15MiB 程度までアップロードできるはず --- diff --git a/OpenTween/MyCommon.cs b/OpenTween/MyCommon.cs index f826e87a..169fc9f0 100644 --- a/OpenTween/MyCommon.cs +++ b/OpenTween/MyCommon.cs @@ -126,7 +126,7 @@ namespace OpenTween public enum HttpTimeOut { MinValue = 10, - MaxValue = 120, + MaxValue = 1000, DefaultValue = 20, }