Skip to content

Commit

Permalink
🐛 Fix incorrect filename reference
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexV525 committed Sep 22, 2024
1 parent b7ffb9a commit 9ecf239
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ios/Classes/core/PMManager.m
Original file line number Diff line number Diff line change
Expand Up @@ -1064,7 +1064,7 @@ - (void)saveLivePhoto:(NSString *)imagePath
desc:(NSString *)desc
block:(AssetBlockResult)block {
[PMLogUtils.sharedInstance info:[NSString stringWithFormat:@"save LivePhoto with imagePath: %@, videoPath: %@, filename: %@, desc %@",
imagePath, videoPath, filename, desc]];
imagePath, videoPath, title, desc]];
NSURL *imageURL = [NSURL fileURLWithPath:imagePath];
NSURL *videoURL = [NSURL fileURLWithPath:videoPath];
__block NSString *assetId = nil;
Expand Down

0 comments on commit 9ecf239

Please sign in to comment.