Skip to content

Commit

Permalink
fix: move app to use new twitch app client id (#141)
Browse files Browse the repository at this point in the history
  • Loading branch information
clarkio authored Sep 5, 2021
1 parent 390d6da commit e99edeb
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "twitch-highlighter",
"displayName": "Twitch Highlighter",
"description": "Allow your Twitch viewers to help in spotting bugs, typos, etc. by sending a command in chat that will highlight the line of code they want you to check.",
"version": "1.0.2",
"version": "1.0.3",
"preview": false,
"publisher": "clarkio",
"engines": {
Expand Down
4 changes: 2 additions & 2 deletions src/enums/TwitchKeys.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export enum TwitchKeys {
"clientId" = "hhxtni83sibk1278lmv6bwye1pnurt",
"scope" = "chat:read chat:edit"
"clientId" = "83juwb58ggj9s7l7nf9ngyill70tem",
"scope" = "chat:read chat:edit",
}
1 change: 1 addition & 0 deletions src/ttvchat/api/API.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ export class API {
}
});
});

return result;
}
public static async revokeToken(token: string) {
Expand Down

0 comments on commit e99edeb

Please sign in to comment.