Compare commits

...

2 commits

Author SHA1 Message Date
0ce58b3ce7 Merge pull request 'remove unused with_password' (#2) from unupass into trunk
Reviewed-on: #2
2024-10-15 07:40:32 +00:00
e10069306d remove unused with_password
the login and auth uses with_token seemingly
2024-10-15 08:57:36 +02:00

View file

@ -137,18 +137,6 @@ public class Subsonic : Object {
private string url;
private string parameters;
public Subsonic.with_password (string url, string username, string password) {
this.url = url;
this.parameters = @"u=$(Uri.escape_string(username))&p=$(Uri.escape_string(password))&v=1.16.1&c=eu.callcc.audrey";
this.session = new Soup.Session ();
this.session.user_agent = "audrey/linux";
this.artist_list = new ListStore (typeof (Artist));
this.album_list = new ListStore (typeof (Album));
this.song_list = new ListStore (typeof (Song));
}
public Subsonic.with_token (string url, string username, string token, string salt) {
this.url = url;
this.parameters = @"u=$(Uri.escape_string(username))&t=$(Uri.escape_string(token))&s=$(Uri.escape_string(salt))&v=1.16.1&c=eu.callcc.audrey";