Skip to content
Snippets Groups Projects
Commit 0bf83f7d authored by Johannes Goderbauer's avatar Johannes Goderbauer Committed by Johannes Goderbauer
Browse files

notification: fixed error when there was no linkinformation available

(cherry picked from commit c0af5de7)
parent 894e82aa
No related branches found
No related tags found
No related merge requests found
......@@ -3,4 +3,5 @@ import("system.result");
import("system.text");
var context = text.decodeMS(vars.get("$field.LINKINFO"))[0];
result.string(context);
\ No newline at end of file
if (context)
result.string(context);
\ No newline at end of file
......@@ -3,4 +3,5 @@ import("system.result");
import("system.text");
var id = text.decodeMS(vars.get("$field.LINKINFO"))[1];
result.string(id);
\ No newline at end of file
if (id)
result.string(id);
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment