GUACAMOLE-526: Add missing semicolon.

This commit is contained in:
Michael Jumper
2018-04-26 19:20:43 -07:00
parent f6f66eec0a
commit 2d03387b6b

View File

@@ -41,7 +41,7 @@ angular.module('rest').factory('requestService', ['$q', '$http', 'Error',
function success(request) { return request.data; },
function failure(request) { throw new Error(request.data); }
);
}
};
return wrappedHttpCall;
}]);