Commit c277689d by Shailesh Aher

[IOS-132]: today_banner placement name was used in place of today_sqaure placement name - Fixed

parent 7ec461dc
......@@ -97,11 +97,13 @@ class TodayCellFactory: CellFactory {
adView.delegate = self
adView.loggingAlias = "📍 Today Banner"
var adType = AdType.banner
var placementName = placementNameTodayBanner
if cellType(at: indexPath) == .adMREC {
adType = .square
placementName = placementNameTodaySquare
adView.loggingAlias = "📅 Today MREC"
}
adView.set(placementName: placementNameTodayBanner, adType: adType)
adView.set(placementName: placementName, adType: adType)
adViewCache[indexPath] = adView
return adView
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment