This commit is contained in:
2022-04-20 10:16:15 +02:00
parent 7bc6cc0d0c
commit ca2822f6e6
2 changed files with 2 additions and 2 deletions

View File

@@ -6,7 +6,7 @@
<groupId>org.example</groupId> <groupId>org.example</groupId>
<artifactId>Widerhall</artifactId> <artifactId>Widerhall</artifactId>
<version>0.0.19</version> <version>0.0.20</version>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>

View File

@@ -234,7 +234,7 @@ public class Rest extends HttpServlet {
return Map.of(MEMBERS,members); return Map.of(MEMBERS,members);
} catch (SQLException e) { } catch (SQLException e) {
LOG.error("Failed to load member list: ",e); LOG.error("Failed to load member list: ",e);
return Map.of("error",t("Failed to load member list '{}'",list.email())); return Map.of(ERROR,t("Failed to load member list '{}'",list.email()));
} }
} }