Rename subsonic api module

Signed-off-by: Andrew DeMaria <lostonamountain@gmail.com>
This commit is contained in:
Andrew DeMaria
2017-07-09 16:57:02 -06:00
parent b4c7a96900
commit d8bd94b7ad
6 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -21,7 +21,7 @@
<dependency>
<groupId>org.libresonic.player</groupId>
<artifactId>libresonic-rest-api</artifactId>
<artifactId>subsonic-rest-api</artifactId>
<version>${project.version}</version>
</dependency>
@@ -99,7 +99,7 @@ public class JAXBWriter {
private String getRESTProtocolVersion() throws Exception {
InputStream in = null;
try {
in = StringUtil.class.getResourceAsStream("/libresonic-rest-api.xsd");
in = StringUtil.class.getResourceAsStream("/subsonic-rest-api.xsd");
Document document = new SAXBuilder().build(in);
Attribute version = document.getRootElement().getAttribute("version");
return version.getValue();