suumo-search

Perform advanced searches on Suumo.jp
git clone https://git.neuralcrash.com/suumo-search.git
Log | Files | Refs | README

commit 446085a7ff06416238d78553b58692ab103a5700
parent ecfa958b7fddc34974ed7ae1c5b7111c29cbfa26
Author: Kebigon <git@kebigon.xyz>
Date:   Thu, 20 May 2021 19:46:00 +0900

Fix NPE when property housesearch.mail.to has a value

Diffstat:
Msrc/main/java/xyz/kebigon/housesearch/mail/EmailSender.java | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/xyz/kebigon/housesearch/mail/EmailSender.java b/src/main/java/xyz/kebigon/housesearch/mail/EmailSender.java @@ -71,7 +71,7 @@ public class EmailSender email.setFrom(from); if (to != null && !(to = to.trim()).isEmpty()) - for (final String address : mailSession.getProperty(to).split(",")) + for (final String address : to.split(",")) email.addTo(address.trim()); if (bcc != null && !(bcc = bcc.trim()).isEmpty())