mirror of
https://github.com/snobu/destreamer.git
synced 2026-03-09 21:48:26 +00:00
Compare commits
3 Commits
cb689336d8
...
757aab1747
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
757aab1747 | ||
|
|
ef91acaf10 | ||
|
|
e9a0954528 |
@@ -43,11 +43,12 @@ export class TokenCache {
|
||||
|
||||
public Write(session: Session): void {
|
||||
const s: string = JSON.stringify(session, null, 4);
|
||||
fs.writeFile('.token_cache', s, (err: any) => {
|
||||
fs.writeFile(this.tokenCacheFile, s, (err: any) => {
|
||||
if (err) {
|
||||
return logger.error(err);
|
||||
}
|
||||
logger.info('Fresh access token dropped into .token_cachen \n'.green);
|
||||
|
||||
logger.info(`Fresh access token dropped into ${this.tokenCacheFile} \n`.green);
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user