mirror of
https://github.com/clangen/musikcube.git
synced 2025-03-14 22:21:01 +00:00
Fix issue where reading a timestamp from the DB may overflow,
potentially causing unnecessary rescanning.
This commit is contained in:
parent
75f21947ce
commit
452bcb4a2c
@ -364,7 +364,7 @@ static int64_t writeToTracksTable(
|
||||
stmt.BindInt32(4, track.GetInt32("filesize"));
|
||||
stmt.BindText(5, track.GetString("title"));
|
||||
stmt.BindText(6, track.GetString("filename"));
|
||||
stmt.BindInt32(7, track.GetInt32("filetime"));
|
||||
stmt.BindInt64(7, track.GetInt64("filetime"));
|
||||
stmt.BindInt64(8, track.GetInt64("path_id"));
|
||||
stmt.BindText(9, track.GetString("external_id"));
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user