aboutsummaryrefslogtreecommitdiff
path: root/libdino/src/util
Commit message (Collapse)AuthorAgeFilesLines
* Add WeakTimeout Pattern to Prevent LeaksChristopher Vollick2024-04-281-0/+40
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | While doing testing I noticed that skeletons were being leaked, and eventually tracked it down to the timer that updates the time label closing over "this" and then keeping the reference alive, potentially for 24 hours. I noticed a few other places in the code doing some version of this, and one of them had the "static and weak pointer" approach, which I pulled out into a util class. Now, we still have to make sure we're passing it a static method instead of a lambda, as that would also close over "this" and render the whole thing useless, but at least most of the annoying parts live in the util class now. Also the call_widget version was doing a weird thing where it was removing itself, but then returning "true"? I'm not sure what that accomplishes, because returning "false" means to not run this again. So I think my new version is the same in practice, but simpler... There are other timeouts in the code that I briefly looked over, but all of them seemed to be relatively short hard-coded durations, so I left them alone. But if any of them are long-lived, it's possible they could also benefit from this class in the future. Closes #1480 Co-Authored-By: Marvin W <git@larma.de>
* Fix empty alias being handled different than noneMarvin W2023-04-221-0/+1
|
* Show "Me" instead of bare jid when no local alias is setMarvin W2023-02-071-8/+1
|
* Improve history sync under loadMarvin W2023-02-071-7/+6
|
* Fix reaction display in private MUCsMarvin W2023-01-311-3/+17
|
* Fix warningsfiaxh2021-04-111-3/+3
|
* Improve contact description in OMEMO warningsfiaxh2020-12-041-2/+2
| | | | fixes #947
* Refactor Notifications, add freedesktop backendfiaxh2020-11-201-0/+97
| | | | fixes #707
* Fix compiler warnings in WeakMapfiaxh2020-11-171-19/+24
|
* Add a WeakMap implementation + testsfiaxh2020-11-142-0/+184