]> source.dussan.org Git - nextcloud-server.git/commit
Fix empty details view after renaming a file
authorDaniel Calviño Sánchez <danxuliu@gmail.com>
Thu, 11 Jan 2018 01:47:11 +0000 (02:47 +0100)
committerDaniel Calviño Sánchez <danxuliu@gmail.com>
Thu, 11 Jan 2018 12:25:41 +0000 (13:25 +0100)
commit217b711dbb01500377d734e44d1e0cd5be25e500
tree43ac1cc45897eee0350e1c66aff8e150da0226d9
parent65bba286b6a2b6942839865216f6bcb332e3d1c7
Fix empty details view after renaming a file

"FileList._updateDetailsView" expects either a file name (as a string)
or a file model (as an "OCA.File.FileInfoModel"), but when called
through "updateInList" an "OC.Files.FileInfo" object was given instead.
As the given attribute was not a model "_updateDetailsView" treated it
as a file name and tried to get the model for that file, which failed
and caused the details view to be emptied.

Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
apps/files/js/filelist.js
apps/files/tests/js/filelistSpec.js