mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-06-02 17:09:44 +00:00
fix(eas): avoid doing bogus truncation
This commit is contained in:
committed by
leecher1337
parent
b77d69fbd0
commit
f94586e47b
@@ -772,7 +772,8 @@ struct GlobalObjectId {
|
||||
}
|
||||
}
|
||||
|
||||
return [theContent substringToIndex: i];
|
||||
if (i >= 0)
|
||||
return [theContent substringToIndex: i];
|
||||
}
|
||||
|
||||
*wasTruncated = 0;
|
||||
|
||||
Reference in New Issue
Block a user