From 298488de9c1ae26a7c382dbe18101341a5bcff5b Mon Sep 17 00:00:00 2001 From: Cheyenne Meyer Date: Mon, 9 May 2016 05:04:56 -0700 Subject: [PATCH] Change getBrand() result to Libresonic This almost exclusively affects the results returned by the web app to display the application's name. --- .../java/net/sourceforge/subsonic/service/SettingsService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subsonic-main/src/main/java/net/sourceforge/subsonic/service/SettingsService.java b/subsonic-main/src/main/java/net/sourceforge/subsonic/service/SettingsService.java index 4fac7f0d..d2fe3092 100644 --- a/subsonic-main/src/main/java/net/sourceforge/subsonic/service/SettingsService.java +++ b/subsonic-main/src/main/java/net/sourceforge/subsonic/service/SettingsService.java @@ -1028,7 +1028,7 @@ public class SettingsService { * @return The brand name. */ public String getBrand() { - return "Subsonic"; + return "Libresonic"; } /**