Fixed bug in multiselect, introduced by 6d4df5f.

This commit is contained in:
Nils Asmussen 2016-07-30 14:51:24 +02:00
parent daf7d37c84
commit ffef7e3d8f

View File

@ -199,7 +199,7 @@ multiselect.getSelection = function(e) {
let id = $(this).data('id')
if (!album.isSmartID(id) && id!=null) {
if (id!=null && id!==0 && !album.isSmartID(id)) {
ids.push(id)
$(this).addClass('active')