😳 what if we bikeshedded the meme player user agent together (and we were both girls)

This commit is contained in:
Erica Z 2024-10-12 21:24:23 +00:00
parent 9c7bd61318
commit 8f0da45a63
2 changed files with 2 additions and 2 deletions

View file

@ -142,7 +142,7 @@ public class Subsonic : Object {
this.parameters = @"u=$(Uri.escape_string(username))&p=$(Uri.escape_string(password))&v=1.16.1&c=eu.callcc.audrey"; 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 = new Soup.Session ();
this.session.user_agent = "audrey (Linux)"; this.session.user_agent = "audrey/linux";
this.artist_list = new ListStore (typeof (Artist)); this.artist_list = new ListStore (typeof (Artist));
this.album_list = new ListStore (typeof (Album)); this.album_list = new ListStore (typeof (Album));

View file

@ -27,7 +27,7 @@ class Playbin : Object {
public signal void stream_over (); public signal void stream_over ();
private void on_source_setup (Gst.Element playbin, dynamic Gst.Element source) { private void on_source_setup (Gst.Element playbin, dynamic Gst.Element source) {
source.user_agent = "audrey (Linux)"; source.user_agent = "audrey/linux";
} }
construct { construct {