|
@ -20,7 +20,7 @@ public class MessageSearch { |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
public List<Long> getAccounts(ProfileService profileService) { |
|
|
public List<Long> getAccounts(ProfileService profileService) { |
|
|
if (accounts == null) return null; |
|
|
if (accounts == null || accounts.isEmpty()) return null; |
|
|
|
|
|
|
|
|
List<Long> filtered = accounts.stream() |
|
|
List<Long> filtered = accounts.stream() |
|
|
.map(profileService::GetSteamIDFromAnyData) |
|
|
.map(profileService::GetSteamIDFromAnyData) |
|
@ -40,10 +40,10 @@ public class MessageSearch { |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
public String getMessage() { |
|
|
public String getMessage() { |
|
|
return message; |
|
|
return message == null || message.isEmpty() ? null : "%"+message+"%"; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
public String getServerId() { |
|
|
public String getServerId() { |
|
|
return serverId; |
|
|
return serverId == null || serverId.isEmpty() ? null : serverId; |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|