Skip to content

Commit

Permalink
fix: AppSettings using bad notes-path for file picker
Browse files Browse the repository at this point in the history
  • Loading branch information
OrIOg committed Aug 8, 2024
1 parent 4b811ef commit 1269d30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/AppSettings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ export default {
true, // modal
FilePickerType.Choose, // type
true, // directories
event.target.value === '' ? '/' : event.target.value, // path
event.target.value === '' ? '/' : `/${event.target.value}`, // path
)
filePicker.pick().then((file) => {
const client = OC.Files.getClient()
Expand Down

0 comments on commit 1269d30

Please sign in to comment.