You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using changelist to receive Steam changes.
When Steam has a sale, they sends out a large number of package changes, but the changelist often loses the package changes.
Here is my code:
import*asSteamUserfrom'steam-user';import{steamAccount,steamPassword,queue}from'./config';import{sender}from'./utils';constuser=newSteamUser({enablePicsCache: true,changelistUpdateInterval: 1000});user.logOn({accountName: steamAccount,password: steamPassword});user.on('loggedOn',async()=>{Common.log("Steam: Logged On");});user.on('error',(e)=>{console.log(e);});user.on('changelist',(changeNumber,apps,packages)=>{console.log('[changeNumber]',changeNumber);console.log('apps:',apps.length);console.log('packages:',packages.length);if(apps.length>0){// for message queuesender(apps,queue.app);}if(packages.length>0){sender(packages,queue.package);}});
Versions
node.js: "v16.14.0"
"steam-user": "^4.25.0"
Screenshots and Error Logs
According to the changelist record page of SteamDB, the changenumber of this winter sale is 17169860, my program stalled after receiving 17169859, and the next changenumber did not receive this changes.
The text was updated successfully, but these errors were encountered:
Describe the bug
I'm using changelist to receive Steam changes.
When Steam has a sale, they sends out a large number of package changes, but the changelist often loses the package changes.
Here is my code:
Versions
Screenshots and Error Logs
According to the changelist record page of SteamDB, the changenumber of this winter sale is 17169860, my program stalled after receiving 17169859, and the next changenumber did not receive this changes.
The text was updated successfully, but these errors were encountered: