From 364944b3291f1fd3d8c6e05f68f86d4de5a52a0d Mon Sep 17 00:00:00 2001 From: Axel Vencatareddy Date: Thu, 23 Nov 2023 08:45:47 +0100 Subject: [PATCH] BREAK: fix(android): harmonize IMAAdEventType between iOS and Android (#3373) --- ios/Video/Features/RCTIMAAdsManager.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ios/Video/Features/RCTIMAAdsManager.swift b/ios/Video/Features/RCTIMAAdsManager.swift index 62407e74..8a5e0643 100644 --- a/ios/Video/Features/RCTIMAAdsManager.swift +++ b/ios/Video/Features/RCTIMAAdsManager.swift @@ -160,7 +160,7 @@ class RCTIMAAdsManager: NSObject, IMAAdsLoaderDelegate, IMAAdsManagerDelegate, I result = "CLICK"; break; case .COMPLETE: - result = "COMPLETE"; + result = "COMPLETED"; break; case .CUEPOINTS_CHANGED: result = "CUEPOINTS_CHANGED";