Fix TypeError in migrate-user-object (#829)

pull/1/head
yflory 2021-11-15 12:56:45 +01:00
parent e4fe445c16
commit 2b6310134b
1 changed files with 1 additions and 1 deletions

View File

@ -111,7 +111,7 @@ define([
}
}).nThen(function (waitFor) {
var addChannelId = function () {
var data = userObject.drive.filesData;
var data = userObject.drive.filesData || {};
var el, parsed;
var n = nThen(function () {});
var padsLength = Object.keys(data).length;