Browse Source

Merge branch 'main' into lang_de

lang_de
Stephan Richter 3 years ago
parent
commit
c74e66ed3c
  1. 2
      pom.xml
  2. 2
      src/main/java/de/srsoftware/widerhall/data/ListMember.java

2
pom.xml

@ -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>

2
src/main/java/de/srsoftware/widerhall/data/ListMember.java

@ -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;
} }

Loading…
Cancel
Save