Paramters must be transferred. (#1638)

This commit is contained in:
Kenneth Geisshirt 2018-01-26 17:21:09 +01:00 committed by GitHub
parent 290b7bfd76
commit 30b87645df
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 26 additions and 12 deletions

View File

@ -1,3 +1,17 @@
X.Y.Z Release notes (2018-1-25)
=============================================================
### Breaking changes
* None.
### Enhancements
* None.
### Bug fixes
* [Object Server] Fixed a bug where arguments were not transferred when debugging.
### Internal
* None.
2.2.5 Release notes (2018-1-25)
=============================================================
### Breaking changes

View File

@ -36,8 +36,8 @@ export default class User {
return getAllUsersRPC();
}
static _getExistingUser() {
return _getExistingUserRPC();
static _getExistingUser(server, identity) {
return _getExistingUserRPC(Array.from(arguments));
}
}