mirror of
https://github.com/librespot-org/librespot.git
synced 2024-11-08 16:45:43 +00:00
Kingosticks change: Obtain spclient access token using login5 instead of keymaster (Fixes librespot-org#1179)
This commit is contained in:
parent
a54cc8f5cd
commit
f81531836f
1 changed files with 2 additions and 2 deletions
|
@ -477,8 +477,8 @@ impl Session {
|
|||
self.0.data.read().auth_blob.clone()
|
||||
}
|
||||
|
||||
pub fn set_auth_blob(&self, auth_blob: &Vec<u8>) {
|
||||
self.0.data.write().auth_blob = auth_blob.clone();
|
||||
pub fn set_auth_blob(&self, auth_blob: &[u8]) {
|
||||
self.0.data.write().auth_blob = auth_blob.to_owned();
|
||||
}
|
||||
|
||||
pub fn country(&self) -> String {
|
||||
|
|
Loading…
Reference in a new issue