Merge branch 'main' into lang_de

This commit is contained in:
2022-04-19 10:43:21 +02:00
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.9</version> <version>0.0.10</version>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>

View File

@@ -147,7 +147,7 @@ public class ListMember {
var rs = request.compile().exec(); var rs = request.compile().exec();
while (rs.next()) list.add(rs.getString(LIST_EMAIL)); while (rs.next()) list.add(rs.getString(LIST_EMAIL));
} catch (SQLException e) { } catch (SQLException e) {
LOG.warn("Listing memberships lists failed: ",e); LOG.warn("Collecting lists of {} failed: ",user.email(),e);
} }
return list; return list;
} }