Skip to content

Commit e90fcdd

Browse files
committed
Initial commit
1 parent 864df79 commit e90fcdd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/drive.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ export async function getDrives(includeVirtual: boolean = false): Promise<DriveI
5858
total,
5959
used,
6060
free: parseInt(parts[4], 10) || 0,
61-
utilization: total != 0 ? used / total : 0,
61+
utilization: total !== 0 ? used / total : 0,
6262
mount: (parts[6] || parts[0]) as string,
6363
});
6464
}

0 commit comments

Comments
 (0)