I think that the Texts Scope should return "No Messages Today" to the Today Scope, when messages were sent but none received, instead of disappearing.
That's why I reopen the bug for Texts Scope.
@Kyle: Thanks for the info, especially for the link to the relevant lines in src.
As far as I see, if messages were sent but none received, the following happens in query.cpp:
414: "No Messages Today" is not returned, because (tevents1.size() == 0) is false
424: The if branch in the for loop is never executed, because (ev.type == TextType_t::received) is always false
=> reply->push(res) is not executed
=> The Texts Scope is not shown anymore
I think that the Texts Scope should return "No Messages Today" to the Today Scope, when messages were sent but none received, instead of disappearing.
That's why I reopen the bug for Texts Scope.
@Kyle: Thanks for the info, especially for the link to the relevant lines in src.
As far as I see, if messages were sent but none received, the following happens in query.cpp: t::received) is always false
414: "No Messages Today" is not returned, because (tevents1.size() == 0) is false
424: The if branch in the for loop is never executed, because (ev.type == TextType_
=> reply->push(res) is not executed
=> The Texts Scope is not shown anymore
Thanks for your effort!