Skip to content
This repository has been archived by the owner on Mar 31, 2021. It is now read-only.

Commit

Permalink
Fix missing callback in example.js
Browse files Browse the repository at this point in the history
  • Loading branch information
seishun committed Mar 9, 2019
1 parent 50c2405 commit 21d0879
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion example.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ steamClient.on('logOnResponse', function(logonResp) {
});

steamClient.on('servers', function(servers) {
fs.writeFile('servers', JSON.stringify(servers));
fs.writeFileSync('servers', JSON.stringify(servers));
});

steamFriends.on('chatInvite', function(chatRoomID, chatRoomName, patronID) {
Expand Down

0 comments on commit 21d0879

Please sign in to comment.