mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-06-06 23:24:01 +02:00
Fixed build of macOS on Github CI.
This commit is contained in:
parent
a2b3fe6411
commit
b45a696b5d
4 changed files with 4 additions and 4 deletions
2
.github/workflows/mac.yml
vendored
2
.github/workflows/mac.yml
vendored
|
@ -40,7 +40,7 @@ jobs:
|
|||
|
||||
macos:
|
||||
name: MacOS
|
||||
runs-on: macos-13
|
||||
runs-on: macos-latest
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
|
|
|
@ -64,7 +64,7 @@ namespace {
|
|||
if (separateType == Window::SeparateSharedMediaType::None) {
|
||||
return { nullptr };
|
||||
}
|
||||
return { Window::SeparateSharedMedia(separateType, peer, topicRootId) };
|
||||
return { Window::SeparateSharedMedia{ separateType, peer, topicRootId } };
|
||||
}
|
||||
|
||||
void AddContextMenuToButton(
|
||||
|
|
|
@ -63,7 +63,7 @@ bool Storage::write(
|
|||
return false;
|
||||
}
|
||||
if (k == end(bykey)) {
|
||||
bykey.emplace_back(key, *value);
|
||||
bykey.emplace_back(Entry{ key, *value });
|
||||
++list.keysCount;
|
||||
} else if (value) {
|
||||
k->value = *value;
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 419049fcbe88c68486609232c4db7550833c74ca
|
||||
Subproject commit b4f913beb8fba75046b3b6b329658624bf7e934d
|
Loading…
Add table
Reference in a new issue