Obrekr

Results 1 comments of Obrekr

Fixing one issue with `librespot-01_notify_kodi.patch` ``` 1982 | ... &track_id.to_base62()].join(" ")), | ^^^^^^^^^^^^^^^^^^^^^ expected `str`, found enum `std::result::Result` ``` required a single change, the line should be `&track_id.to_base62().unwrap()].join(" ")),`. I...