URL in variable bug fixed
This commit is contained in:
@@ -1171,6 +1171,8 @@ public class Actions
|
||||
// externalApplicationIntent = packParametersIntoIntent(externalApplicationIntent, params, 3);
|
||||
}
|
||||
|
||||
Miscellaneous.logEvent("i", "StartOtherApp", "Starting other app with intent: " + externalApplicationIntent.toString() + " / " + externalApplicationIntent.getDataString(), 5);
|
||||
|
||||
if (startupType.equals(ActivityManageActionStartActivity.startByActivityString))
|
||||
automationServerRef.startActivity(externalApplicationIntent);
|
||||
else if (startupType.equals(ActivityManageActionStartActivity.startByServiceString))
|
||||
|
||||
@@ -840,7 +840,8 @@ public class Miscellaneous extends Service
|
||||
String notificationText = NotificationListener.getLastNotification().getText();
|
||||
|
||||
if (notificationText != null && notificationText.length() > 0)
|
||||
source = source.replace("[notificationText]", escapeStringForUrl(notificationText));
|
||||
//source = source.replace("[notificationText]", escapeStringForUrl(notificationText));
|
||||
source = source.replace("[notificationText]", notificationText);
|
||||
else
|
||||
{
|
||||
source = source.replace("[notificationText]", "notificationText unknown");
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
* Fixed: Set-wifi action wasn't correctly pre-filled-out when editing action.
|
||||
* Fixed: Service startup checks improved when no rules with full permissions were present.
|
||||
* Fixed: Editing bluetooth trigger could crash if permissions weren't given.
|
||||
* Fixed: URLs from notifications wouldn't open when used in a rule as a variable.
|
||||
* Added: Action to change system settings
|
||||
Reference in New Issue
Block a user