You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Line 254 may replace not only the '~' characters at the beginning of path strings, but also those in the original filenames at the end of it, resulting in errors when copying attachments
Suggestion: It might be better to ensure that only the first '~' character is replaced:
return format!("{}{}", &home(), &path[1..]);
The text was updated successfully, but these errors were encountered:
From @rllbe in #151:
imessage-exporter/imessage-database/src/tables/attachment.rs
Lines 251 to 257 in c73bc4d
Line 254 may replace not only the '~' characters at the beginning of path strings, but also those in the original filenames at the end of it, resulting in errors when copying attachments
Suggestion: It might be better to ensure that only the first '~' character is replaced:
The text was updated successfully, but these errors were encountered: