diff --git a/Mintegral/AppLovinMediationMintegralAdapter.podspec b/Mintegral/AppLovinMediationMintegralAdapter.podspec index 4b7ff37846..574be56ba1 100644 --- a/Mintegral/AppLovinMediationMintegralAdapter.podspec +++ b/Mintegral/AppLovinMediationMintegralAdapter.podspec @@ -5,7 +5,7 @@ s.authors = 'AppLovin Corporation' => 'devsupport@applovin.com' } s.name = 'AppLovinMediationMintegralAdapter' -s.version = '7.1.5.0.0' +s.version = '7.1.5.0.1' s.platform = :ios, '9.0' s.summary = 'Mintegral adapter used for mediation with the AppLovin MAX SDK' s.homepage = "https://github.com/CocoaPods/Specs/search?o=desc&q=#{s.name}&s=indexed" diff --git a/Mintegral/CHANGELOG.md b/Mintegral/CHANGELOG.md index f32c1665db..f6e3e48777 100644 --- a/Mintegral/CHANGELOG.md +++ b/Mintegral/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 7.1.5.0.1 +* Map Mintegral image url empty error to MAX internal error. + ## 7.1.5.0.0 * Certified with Mintegral SDK 7.1.5.0. * Distribute adapter as an XCFramework. diff --git a/Mintegral/MintegralAdapter/ALMintegralMediationAdapter.m b/Mintegral/MintegralAdapter/ALMintegralMediationAdapter.m index 060513525a..237337138b 100644 --- a/Mintegral/MintegralAdapter/ALMintegralMediationAdapter.m +++ b/Mintegral/MintegralAdapter/ALMintegralMediationAdapter.m @@ -14,7 +14,7 @@ #import #import -#define ADAPTER_VERSION @"7.1.5.0.0" +#define ADAPTER_VERSION @"7.1.5.0.1" // List of Mintegral error codes not defined in API, but in their docs // @@ -521,6 +521,7 @@ + (MAAdapterError *)toMaxError:(NSError *)mintegralError case kMTGErrorCodeMaterialLoadFailed: case kMTGErrorCodeNoSupportPopupWindow: case kMTGErrorCodeFailedDiskIO: + case kMTGErrorCodeImageURLisEmpty: adapterError = MAAdapterError.internalError; break; }