We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c1d268 commit 7ba5f55Copy full SHA for 7ba5f55
interactions.ts
@@ -474,6 +474,7 @@ export async function handleInteraction(interaction: Interaction) {
474
fetch(`https://api.steampowered.com/IFamilyGroupsService/GetSharedLibraryApps/v1/?access_token=${access_token}&family_groupid=${family_group_id}`)
475
.then(res => res.json())
476
.then(data => {
477
+ console.log(data);
478
if (data.response && data.response.apps) {
479
const owners = (data.reponse.apps as {owner_steamids: string[]}[]).map((app) => app.owner_steamids).reduce((prev,curr) => {
480
curr.forEach(id => {
0 commit comments