Skip to content

Commit

Permalink
Merge pull request #2007 from nextcloud/fix/specialchars-in-face-names
Browse files Browse the repository at this point in the history
Fix links to faces with special chars
  • Loading branch information
marcelklehr committed Dec 3, 2023
2 parents f27fee7 + 987056c commit 6e49882
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions js/photos-main.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/photos-main.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions js/photos-public.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/photos-public.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions js/photos-src_views_Faces_vue.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/photos-src_views_Faces_vue.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/views/Faces.vue
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
<div v-else-if="!noFaces" class="faces__list">
<router-link v-for="face in orderedFaces"
:key="face.basename"
:to="`/faces/${face.basename}`">
:to="`/faces/${encodeURIComponent(face.basename)}`">
<FaceCover :base-name="face.basename" />
</router-link>
<router-link key="unassigned"
Expand Down

0 comments on commit 6e49882

Please sign in to comment.