mirror of
https://github.com/captbaritone/webamp.git
synced 2026-01-23 10:15:31 +00:00
Add missing return statement
This commit is contained in:
parent
9cc20f0da1
commit
24788be589
1 changed files with 1 additions and 1 deletions
|
|
@ -114,7 +114,7 @@ export default class SkinModel {
|
|||
async getTweetStatus(): Promise<TweetStatus> {
|
||||
const tweet = await this.getTweet();
|
||||
if (tweet != null) {
|
||||
"TWEETED";
|
||||
return "TWEETED";
|
||||
}
|
||||
const reviewRows = await this.getReviews();
|
||||
const reviews = new Set(reviewRows.map((row) => row.review));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue