Fix bug adding extra quotes

This commit is contained in:
rfm 2024-09-02 21:52:02 +01:00
parent 0619a30840
commit 2c8528d973

View file

@ -2383,7 +2383,7 @@ static BOOL snuggleStart(NSString *t)
*/ */
if (up != nil && [up isEqual: [name lastPathComponent]] == NO) if (up != nil && [up isEqual: [name lastPathComponent]] == NO)
{ {
[str appendString: @"\" up=\""]; [str appendString: @" up=\""];
[str appendString: up]; [str appendString: up];
[str appendString: @"\""]; [str appendString: @"\""];
} }