This commit is contained in:
2022-04-20 10:13:19 +02:00
parent 68f361e15b
commit 7bc6cc0d0c
2 changed files with 2 additions and 2 deletions

View File

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

View File

@@ -216,7 +216,7 @@ public class Rest extends HttpServlet {
}
private Map listDetail(MailingList list, User user) {
if (list == null) return Map.of(ERROR,t("Mailinglist {} unknown",list.email()));
if (list == null) return Map.of(ERROR,"no list email provided!");
var map = new HashMap<>();
if (list.hasState(MailingList.STATE_FORWARD_FROM)) map.put("forward_from",true);
if (list.hasState(MailingList.STATE_FORWARD_ATTACHED)) map.put("forward_attached",true);