From 844df206178c7053d8297db80072d64170b01d06 Mon Sep 17 00:00:00 2001 From: Kanat Kiialbaev Date: Mon, 23 Oct 2023 00:19:32 -0700 Subject: [PATCH] fix(core): video attachment upload (#1754) * fix video attachment upload * fix test * add changelog --- .../lib/src/core/http/stream_http_client_options.dart | 8 ++++---- .../src/core/http/stream_http_client_options_test.dart | 4 ++-- packages/stream_chat_flutter_core/CHANGELOG.md | 6 ++++++ 3 files changed, 12 insertions(+), 6 deletions(-) diff --git a/packages/stream_chat/lib/src/core/http/stream_http_client_options.dart b/packages/stream_chat/lib/src/core/http/stream_http_client_options.dart index d68e073f..ad18c254 100644 --- a/packages/stream_chat/lib/src/core/http/stream_http_client_options.dart +++ b/packages/stream_chat/lib/src/core/http/stream_http_client_options.dart @@ -7,8 +7,8 @@ class StreamHttpClientOptions { /// Instantiates a new [StreamHttpClientOptions] const StreamHttpClientOptions({ String? baseUrl, - this.connectTimeout = const Duration(seconds: 6), - this.receiveTimeout = const Duration(seconds: 6), + this.connectTimeout = const Duration(seconds: 30), + this.receiveTimeout = const Duration(seconds: 30), this.queryParameters = const {}, this.headers = const {}, }) : baseUrl = baseUrl ?? _defaultBaseURL; @@ -16,10 +16,10 @@ class StreamHttpClientOptions { /// base url to use with client. final String baseUrl; - /// connect timeout, default to 6s + /// connect timeout, default to 30s final Duration connectTimeout; - /// received timeout, default to 6s + /// received timeout, default to 30s final Duration receiveTimeout; /// Common query parameters. diff --git a/packages/stream_chat/test/src/core/http/stream_http_client_options_test.dart b/packages/stream_chat/test/src/core/http/stream_http_client_options_test.dart index 1ed0e5ab..0a54c00a 100644 --- a/packages/stream_chat/test/src/core/http/stream_http_client_options_test.dart +++ b/packages/stream_chat/test/src/core/http/stream_http_client_options_test.dart @@ -5,8 +5,8 @@ void main() { test('should return the all default set params', () { const options = StreamHttpClientOptions(); expect(options.baseUrl, 'https://chat.stream-io-api.com'); - expect(options.connectTimeout, const Duration(seconds: 6)); - expect(options.receiveTimeout, const Duration(seconds: 6)); + expect(options.connectTimeout, const Duration(seconds: 30)); + expect(options.receiveTimeout, const Duration(seconds: 30)); expect(options.queryParameters, const {}); expect(options.headers, const {}); }); diff --git a/packages/stream_chat_flutter_core/CHANGELOG.md b/packages/stream_chat_flutter_core/CHANGELOG.md index c8facc3d..23ad62ef 100644 --- a/packages/stream_chat_flutter_core/CHANGELOG.md +++ b/packages/stream_chat_flutter_core/CHANGELOG.md @@ -1,3 +1,9 @@ +## UNRELEASED + +🐞 Fixed + +- Fixed video attachment uploading. [#1754](https://github.com/GetStream/stream-chat-flutter/pull/1754) + ## 6.10.0 - Added mixin support to `StreamChannelListEventHandler`.