Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 24847f35 authored by Tom Gibara's avatar Tom Gibara
Browse files

Fix for bug 1185.

The constructor IntentFilter(String action, String dataType) ignores the action parameter.
This change ensures that it is correctly added to the set of actions.
parent ae499953
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -351,6 +351,7 @@ public class IntentFilter implements Parcelable {
        throws MalformedMimeTypeException {
        mPriority = 0;
        mActions = new ArrayList<String>();
        addAction(action);
        addDataType(dataType);
    }