Skip to content

Commit

Permalink
Add missing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
alecpl committed Jan 28, 2024
1 parent 7f45950 commit 6c45fa4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion program/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -1766,7 +1766,7 @@ function rcube_webmail()
clearTimeout(this.folder_collapsed_timer);

var prefname = this.env.task == 'addressbook' ? 'collapsed_abooks' : 'collapsed_folders',
old = this.env[prefname]
old = this.env[prefname],
entry = '&' + urlencode(node.id) + '&';

this.env[prefname] = old.replace(entry, '');
Expand Down

0 comments on commit 6c45fa4

Please sign in to comment.