1
0
mirror of https://github.com/KokaKiwi/BarInsta synced 2024-11-08 15:57:29 +00:00
This commit is contained in:
Ammar Githam 2021-05-03 17:40:06 +09:00
parent 9dae40fae0
commit b2822b27a1

View File

@ -189,7 +189,7 @@ public final class ThreadManager {
return null; return null;
} }
final DirectThread thread = threads.stream() final DirectThread thread = threads.stream()
.filter(t -> t.getThreadId().equals(threadId)) .filter(t -> Objects.equals(t.getThreadId(), threadId))
.findFirst() .findFirst()
.orElse(null); .orElse(null);
if (thread != null) { if (thread != null) {