diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2017-01-31 23:51:02 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2017-01-31 23:51:02 +0900 |
| commit | 740ef6a542375b04ef706e634c4ec8467341f7b4 (patch) | |
| tree | 7171757cc4d7828c8c28d4466d8a1db274e76b20 /src/api | |
| parent | Merge branch 'master' of https://github.com/syuilo/misskey (diff) | |
| download | sharkey-740ef6a542375b04ef706e634c4ec8467341f7b4.tar.gz sharkey-740ef6a542375b04ef706e634c4ec8467341f7b4.tar.bz2 sharkey-740ef6a542375b04ef706e634c4ec8467341f7b4.zip | |
Fix: Add missing semicolon
Diffstat (limited to 'src/api')
| -rw-r--r-- | src/api/service/twitter.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/api/service/twitter.ts b/src/api/service/twitter.ts index eb3531d86f..160956cf92 100644 --- a/src/api/service/twitter.ts +++ b/src/api/service/twitter.ts @@ -73,6 +73,6 @@ module.exports = (app: express.Application) => { detail: true, includeSecrets: true })); - }) + }); }); }; |