Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cbartondock committed Jun 19, 2024
1 parent 54454f6 commit 4ae4b4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/vdf-manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ export class VDF_Manager {
});
}

private forEach(callback: (steamDirectory: string, userId: string, listItem: VDF_ListItem) => void) {
forEach(callback: (steamDirectory: string, userId: string, listItem: VDF_ListItem) => void) {
for (let steamDirectory in this.data) {
for (let userId in this.data[steamDirectory]) {
callback(steamDirectory, userId, this.data[steamDirectory][userId]);
Expand Down

0 comments on commit 4ae4b4f

Please sign in to comment.