Skip to content

Commit

Permalink
Merge pull request #531 from Peergos/fix/note-app-folder-shortcut
Browse files Browse the repository at this point in the history
support sharing a secret link to a folder containing a .note file
  • Loading branch information
ianopolous authored Nov 13, 2023
2 parents 963cdc0 + cf27a8b commit 83f8611
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/drive/DriveShare.vue
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ module.exports = {
let name = this.displayName.toLowerCase();
let that = this;
if (this.currentDir != null && (name.endsWith('.html') || name.endsWith('.md') || name == 'peergos-app.json')) {
if (this.currentDir != null && (name.endsWith('.html') || name.endsWith('.md') || name.endsWith('.note') || name == 'peergos-app.json')) {
this.choice_message = 'Confirm Action';
this.choice_body = '';
this.choice_consumer_func = (index) => {
Expand Down

0 comments on commit 83f8611

Please sign in to comment.