Merge pull request #233 from dgw/safe-blank-user

Don't crash when sending a push when user has no networks
This commit is contained in:
John Reese 2017-06-29 20:25:54 -07:00 committed by GitHub
commit ad20898554
1 changed files with 7 additions and 1 deletions

View File

@ -259,8 +259,14 @@ class CPushMod : public CModule
replace["{title}"] = title;
replace["{username}"] = options["username"];
replace["{secret}"] = options["secret"];
replace["{network}"] = GetNetwork()->GetName();
replace["{target}"] = options["target"];
// network is special because it can be nullptr if the user has none set up yet
CIRCNetwork* network = GetNetwork();
if (network) {
replace["{network}"] = network->GetName();
} else {
replace["{network}"] = "(No network)";
}
CString message_uri = expand(options["message_uri"], replace);
CString message_title = expand(options["message_title"], replace);