This commit is contained in:
crusader 2018-06-15 19:39:57 +09:00
parent 1de1af1fdb
commit 92e71451eb
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@loafer/ng-rpc",
"version": "0.0.3",
"version": "0.0.4",
"repository": {
"type": "git",
"url": "https://git.loafle.net/loafer/ng.git"

View File

@ -152,7 +152,7 @@ export class RPCSubscribeService {
results.push(Boolean(param));
break;
case 'Date':
results.push(new Date(param));
results.push(new Date(Number(param)));
break;
case 'Function':
throw new SubscriberParameterError(`Function type [${indexI}] is not allowed`);