forked from pool/telegram-desktop
6148e1c6ad
- Updated to 4.9.5. * Several new bot web-app features. * Bug fixes and other minor improvements. - Update tg_owt-master.zip - Add 0006-sigc-track_obj.patch - Relax usage of openssl versions - Updated to 4.9.4. * Default private chats / groups / channels notification settings. * Forwarded / reply-to-a-story icon in chats list message preview. * Bug fixes and other minor improvements. - Updated to 4.9.3. * Fix audio output on macOS. - Updated to 4.9.2. * Remove single recently used emoji or reset the list from context menu. * Change all emoji skin colors from Emoji & People section. * Connected Websites section in Settings > Advanced. * Bug fixes and other minor improvements. - Updated to 4.9.1. * Fix a crash in reply area ripple animation. * Fix a crash on start in some Linux distributions. - Updated to 4.9.0. * Gradual stories rollout. - Updated to 4.8.12. * Fix crash by a full rebuild on macOS. - Updated to 4.8.11. * Fix initial video playback speed. * Use native window resize on Windows 11. * Fix memory leak in Direct3D 11 media viewer on Windows. - Updated to 4.8.10. * Send story sharing comments as separate messages. * Fix stories explanation tooltip ordering. - Updated to 4.8.9. * Bug fixes and other minor improvements. - Updated to 4.8.8. * Several crash fixes and story viewer improvements. - Updated to 4.8.7. * Several crash fixes and small stories improvements. - Updated to 4.8.6. * Fix langpack keys by a full rebuild on macOS. - Updated to 4.8.5. * Bug fixes and other minor improvements. And stories preview. OBS-URL: https://build.opensuse.org/request/show/1110928 OBS-URL: https://build.opensuse.org/package/show/server:messaging/telegram-desktop?expand=0&rev=266
12 lines
517 B
Diff
12 lines
517 B
Diff
--- Telegram/lib_base/base/platform/linux/base_network_reachability_linux.cpp.orig 2023-08-31 20:40:42.000000000 +0200
|
|
+++ Telegram/lib_base/base/platform/linux/base_network_reachability_linux.cpp 2023-09-13 17:12:47.816243460 +0200
|
|
@@ -20,7 +20,7 @@ public:
|
|
, _available(_monitor->get_network_available()) {
|
|
_monitor->property_network_available(
|
|
).signal_changed(
|
|
- ).connect(sigc::track_object([=] {
|
|
+ ).connect(sigc::track_obj([=] {
|
|
_available = _monitor->get_network_available();
|
|
}, *this));
|
|
}
|