Skip to content
Snippets Groups Projects
Commit a58a954d authored by juanf's avatar juanf
Browse files

SSDM-110: Bugfix.

SVN: 31429
parent 51b8d9f3
No related branches found
No related tags found
No related merge requests found
......@@ -66,7 +66,9 @@ function ServerFacade(openbisServer) {
}
this.listPropertyTypes = function(callbackFunction) {
this.openbisServer.listPropertyTypes(false, callbackFunction);
if(this.openbisServer.listPropertyTypes) { //If not present will not break, but annotations should not be used.
this.openbisServer.listPropertyTypes(false, callbackFunction);
}
}
//
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment