fix allowedDataTypes in fromNativeAndroidRemoteInput

This commit is contained in:
TaopaiC 2018-05-01 23:45:55 +08:00
parent 19266d4bae
commit 5f7edf668c
1 changed files with 3 additions and 3 deletions

View File

@ -103,9 +103,9 @@ export const fromNativeAndroidRemoteInput = (
nativeRemoteInput: NativeAndroidRemoteInput
): AndroidRemoteInput => {
const remoteInput = new AndroidRemoteInput(nativeRemoteInput.resultKey);
if (nativeRemoteInput.allowDataType) {
for (let i = 0; i < nativeRemoteInput.allowDataType.length; i++) {
const allowDataType = nativeRemoteInput.allowDataType[i];
if (nativeRemoteInput.allowedDataTypes) {
for (let i = 0; i < nativeRemoteInput.allowedDataTypes.length; i++) {
const allowDataType = nativeRemoteInput.allowedDataTypes[i];
remoteInput.setAllowDataType(allowDataType.mimeType, allowDataType.allow);
}
}