Skip to content

applets/taskmanager: Fix warnings on startup

Marco Martin requested to merge work/mart/fixTMWarnings into master

During destruction, both magic model context properties can go undefined for a while, and required model properties can go null for a while, so on code paths that can trigger then, they need to be guarded when accessed

Convert the Task to required properties which is more reliable and removes the need of the "m" property which proxied the model context property, which is now a required one

Merge request reports