fix(bug): escape angularJS only if needed to keep legitimate directive

This commit is contained in:
Hivert Quentin
2026-08-12 10:53:51 +02:00
parent f0c23407bf
commit 41e2b7b1ab
2 changed files with 16 additions and 5 deletions
+6 -4
View File
@@ -201,7 +201,7 @@
content = [[[self generateResponse] contentAsString] stringWithoutHTMLInjection: NO stripAngular:YES];
content = [[[self generateResponse] contentAsString] stringWithoutHTMLInjection: NO stripAngular:NO];
if ([self respondsToSelector:@selector(getException)]) {
e = [self getException];
}
@@ -327,10 +327,12 @@
- (NSString *) filenameForDisplay
{
NSString *s;
NSString *s, *cleanFilename;
if ((s = [self filename]) != nil)
return s;
if ((s = [self filename]) != nil) {
cleanFilename = [s stringWithoutHTMLInjection: NO stripAngular:YES];
return cleanFilename;
}
s = [partPath componentsJoinedByString:@"-"];
return ([s length] > 0)