Skip to content

Commit

Permalink
- Updated to latest HTML preview template.
Browse files Browse the repository at this point in the history
- Updated wrap ImageInterstitial content to replace without quotes.
  • Loading branch information
nishant-clevertap committed Nov 19, 2024
1 parent 3ebb17f commit b44db16
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CleverTapSDK/InApps/CTInAppDisplayManager.m
Original file line number Diff line number Diff line change
Expand Up @@ -801,7 +801,7 @@ - (NSString *)wrapImageInterstitialContent:(NSString *)content {
if (html && content) {
NSArray *parts = [html componentsSeparatedByString:CLTAP_INAPP_HTML_SPLIT];
if ([parts count] == 2) {
return [NSString stringWithFormat:@"%@'%@'%@", parts[0], content, parts[1]];
return [NSString stringWithFormat:@"%@%@%@", parts[0], content, parts[1]];
}
}
return nil;
Expand Down
Loading

0 comments on commit b44db16

Please sign in to comment.