Skip to content

Commit

Permalink
Fix image redirect
Browse files Browse the repository at this point in the history
  • Loading branch information
bjoern-hempel committed Dec 17, 2023
1 parent 5ca91a7 commit cc29a79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/redirect/Redirect.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const redirect = (navigate) => {
/* Redirect image page from calendar */
let matchImage = regexImage.exec(path);
if (matchImage) {
navigate('/calendar.html?c=' + matchImage[1] + '&m=' + matchImage[2]);
navigate('/image.html?c=' + matchImage[1] + '&m=' + matchImage[2]);
}
}

Expand Down

0 comments on commit cc29a79

Please sign in to comment.