nicmr / fidelitas

Rust network audio player and web client using actix and crossbeam multithreading, websockets, libvlc, and an Elm frontend.
GNU General Public License v3.0
0 stars 0 forks source link

Switch track IDs to strings #24

Open nicmr opened 4 years ago

nicmr commented 4 years ago

To avoid having to deal with integer bounds etc. we should aim to replace the trackid with a string in

nicmr commented 4 years ago

The issue is actually just with Elm, where the maximum ID is a relatively low 2^32/2-1, as opposed to the rust code, where the maximum ID is 2^64-1