summarylogtreecommitdiffstats
path: root/always_send_as_photo_or_album.patch
blob: 77e05223600ccb590c3faaacb1e8ef1d40aefe8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Description: Disables loading the previous way media was sent, so it always selects either
photo or album by default.
Credits: udf

diff --git a/Telegram/SourceFiles/boxes/send_files_box.cpp b/Telegram/SourceFiles/boxes/send_files_box.cpp
index 2f4c45c48..ed9bf4bb6 100644
--- a/Telegram/SourceFiles/boxes/send_files_box.cpp
+++ b/Telegram/SourceFiles/boxes/send_files_box.cpp
@@ -1498,14 +1498,6 @@ void SendFilesBox::initSendWay() {
 				? SendFilesWay::Album
 				: SendFilesWay::Photos;
 		}
-		const auto way = _controller->session().settings().sendFilesWay();
-		if (way == SendFilesWay::Files) {
-			return way;
-		} else if (way == SendFilesWay::Album) {
-			return _list.albumIsPossible
-				? SendFilesWay::Album
-				: SendFilesWay::Photos;
-		}
 		return (_list.albumIsPossible && !_albumPhotosCount)
 			? SendFilesWay::Album
 			: SendFilesWay::Photos;