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

Commit 9d021de6 authored by Tony Mak's avatar Tony Mak
Browse files

Fix the action string in the manifest

android.intent.action.ACTION_UPDATE_CONVERSATION_ACTIONS was wrong,
it should be android.intent.action.UPDATE_CONVERSATION_ACTIONS

BUG: 123338259
Test: Run IntentTest#shouldNotFindUnexpectedIntents

Change-Id: I429aee54065a2112f55b67d3bacb3e9f68eeb344
parent c21eb7fe
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -4730,7 +4730,7 @@
        <receiver android:name="com.android.server.updates.ConversationActionsInstallReceiver"
                  android:permission="android.permission.UPDATE_CONFIG">
            <intent-filter>
                <action android:name="android.intent.action.ACTION_UPDATE_CONVERSATION_ACTIONS" />
                <action android:name="android.intent.action.UPDATE_CONVERSATION_ACTIONS" />
                <data android:scheme="content" android:host="*" android:mimeType="*/*" />
            </intent-filter>
        </receiver>