Closed
Description
[REQUIRED] Step 1: Describe your environment
- Xcode version: 13.2.1
- Firebase SDK version: 8.4.0
- Installation method:
Swift Package Manager
- Firebase Component: In-App Messaging
- Target platform(s):
iOS
[REQUIRED] Step 2: Describe the problem
In-App Messaging' message has appData
property. But it looks always nil
for test message.
Steps to reproduce:
- Make an App to receive In-App Messaging
- Create and send Test message from Firebase Console
- Set a break point at
displayMessage(:displayDelegate:)
in1.
's App and run the App in Debug mode - See
messageForDisplay.appData
in debug console. It showsnil
.
Relevant Code:
There are two causes of this problem.
1. FIRIAMFetchResponseParser
always ignores appData
for test message
In this code, FIRIAMFetchResponseParser
looks ignore appData
for test message.
2. In-App Messaging's response does not contain appData
property for test message.
I found that appData
also does not be included in responseDict
for test message. It looks happened every time for test message.