diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-07-27 18:50:15 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-07-27 18:50:15 +0900 |
| commit | 08e1c87fa602f470e7e19d7c162597ddc6980162 (patch) | |
| tree | 2ade388f0deba3367db2adc3f57ae9050f17ddbc /src/queue | |
| parent | 5.6.0 (diff) | |
| download | sharkey-08e1c87fa602f470e7e19d7c162597ddc6980162.tar.gz sharkey-08e1c87fa602f470e7e19d7c162597ddc6980162.tar.bz2 sharkey-08e1c87fa602f470e7e19d7c162597ddc6980162.zip | |
oops
Diffstat (limited to 'src/queue')
| -rw-r--r-- | src/queue/index.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/queue/index.ts b/src/queue/index.ts index e404f6fc9c..5a48dbe648 100644 --- a/src/queue/index.ts +++ b/src/queue/index.ts @@ -2,7 +2,7 @@ import http from './processors/http'; import { ILocalUser } from '../models/user'; export function createHttpJob(data: any) { - return http(data, () => {}); + return http({ data }, () => {}); } export function deliver(user: ILocalUser, content: any, to: any) { |