mirror of
https://github.com/telegramdesktop/tdesktop
synced 2025-08-31 22:46:10 +00:00
Fixed build of macOS on Github CI.
This commit is contained in:
2
.github/workflows/mac.yml
vendored
2
.github/workflows/mac.yml
vendored
@@ -40,7 +40,7 @@ jobs:
|
|||||||
|
|
||||||
macos:
|
macos:
|
||||||
name: MacOS
|
name: MacOS
|
||||||
runs-on: macos-13
|
runs-on: macos-latest
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
|
@@ -64,7 +64,7 @@ namespace {
|
|||||||
if (separateType == Window::SeparateSharedMediaType::None) {
|
if (separateType == Window::SeparateSharedMediaType::None) {
|
||||||
return { nullptr };
|
return { nullptr };
|
||||||
}
|
}
|
||||||
return { Window::SeparateSharedMedia(separateType, peer, topicRootId) };
|
return { Window::SeparateSharedMedia{ separateType, peer, topicRootId } };
|
||||||
}
|
}
|
||||||
|
|
||||||
void AddContextMenuToButton(
|
void AddContextMenuToButton(
|
||||||
|
@@ -63,7 +63,7 @@ bool Storage::write(
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
if (k == end(bykey)) {
|
if (k == end(bykey)) {
|
||||||
bykey.emplace_back(key, *value);
|
bykey.emplace_back(Entry{ key, *value });
|
||||||
++list.keysCount;
|
++list.keysCount;
|
||||||
} else if (value) {
|
} else if (value) {
|
||||||
k->value = *value;
|
k->value = *value;
|
||||||
|
Submodule Telegram/lib_base updated: 419049fcbe...b4f913beb8
Reference in New Issue
Block a user