Skip to content

Commit c9b0a1b

Browse files
authored
Update filenavigator.js
1 parent 26c858b commit c9b0a1b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/js/services/filenavigator.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@
2121
if (code == 404) {
2222
this.error = 'Error 404 - Backend bridge is not working, please check the ajax response.';
2323
}
24+
if (code == 200) {
25+
this.error = '';
26+
}
2427
if (!this.error && data.result && data.result.error) {
2528
this.error = data.result.error;
2629
}
@@ -144,4 +147,4 @@
144147

145148
return FileNavigator;
146149
}]);
147-
})(angular);
150+
})(angular);

0 commit comments

Comments
 (0)