Paramters must be transferred. (#1638)
This commit is contained in:
parent
290b7bfd76
commit
30b87645df
14
CHANGELOG.md
14
CHANGELOG.md
|
@ -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)
|
2.2.5 Release notes (2018-1-25)
|
||||||
=============================================================
|
=============================================================
|
||||||
### Breaking changes
|
### Breaking changes
|
||||||
|
|
|
@ -36,8 +36,8 @@ export default class User {
|
||||||
return getAllUsersRPC();
|
return getAllUsersRPC();
|
||||||
}
|
}
|
||||||
|
|
||||||
static _getExistingUser() {
|
static _getExistingUser(server, identity) {
|
||||||
return _getExistingUserRPC();
|
return _getExistingUserRPC(Array.from(arguments));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue