|
@@ -1881,7 +1881,7 @@
|
|
|
}
|
|
}
|
|
|
NSMutableDictionary* segment = [self.content.segments[indexPath.section] mutableCopy];
|
|
NSMutableDictionary* segment = [self.content.segments[indexPath.section] mutableCopy];
|
|
|
NSString *oldCC = [segment objectForKey:@"cc"];
|
|
NSString *oldCC = [segment objectForKey:@"cc"];
|
|
|
- if (oldCC == nil) {
|
|
|
|
|
|
|
+ if (oldCC == nil || oldCC.length == 0) {
|
|
|
oldCC = cc;
|
|
oldCC = cc;
|
|
|
} else {
|
|
} else {
|
|
|
if ([[oldCC substringFromIndex:oldCC.length - 1] isEqualToString:@";"]) {
|
|
if ([[oldCC substringFromIndex:oldCC.length - 1] isEqualToString:@";"]) {
|