Notification listener started.

This commit is contained in:
2021-03-27 19:57:39 +01:00
parent 80f8f9cfe2
commit 712a374adb
7 changed files with 74 additions and 60 deletions

View File

@@ -461,7 +461,11 @@ public class Trigger
String titleDir = params[1];
String title = params[2];
String textDir = params[3];
String text = params[4];
String text;
if(params.length >=5)
text = params[4];
else
text = "";
StringBuilder triggerBuilder = new StringBuilder();
String appString;