Skip to content
This repository has been archived by the owner on Nov 25, 2020. It is now read-only.

Commit

Permalink
fix list task in public share
Browse files Browse the repository at this point in the history
  • Loading branch information
c12simple committed Jan 25, 2018
1 parent c474439 commit 60b8813
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/plugins/core.tasks/js/react/PydioTasks.js
Expand Up @@ -211,7 +211,7 @@
let t = JSON.parse(data);
if( t instanceof Object && t.id){
let taskObject = new Task(t);
if (this._tasksList == null){
if (this._tasksList === undefined){
this._tasksList = new Map();
}
this._tasksList.set(t.id, taskObject);
Expand Down

0 comments on commit 60b8813

Please sign in to comment.