Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
8bitkick committed Jan 13, 2024
1 parent b4960ec commit 5f2ab82
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion cache.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ async function cache(toot, beebState){
'toot': toot.prog,
'mode': toot.mode,
'src': toot.src,
'state': beebState
'state': beebState,
'title': toot.title,
}

const params = {
Expand Down
2 changes: 1 addition & 1 deletion client.js
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ var clientID = "Cli0";
} else {
var hasAudio = (audio_file !== null);

let title = c.tweet.spoiler_text || "Untitled";
let title = tweet.spoiler_text || "Untitled";
// Summarize toot data
let tootData = {
"prog":c.input,
Expand Down

0 comments on commit 5f2ab82

Please sign in to comment.