fix(custom-local-timelines): revert 629262c266 and fix the crash for good

AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
This commit is contained in:
LucasGGamerM
2024-03-24 15:13:24 -03:00
parent d7a229afeb
commit 0931702802
2 changed files with 2 additions and 5 deletions

View File

@@ -34,10 +34,7 @@ public class Mention extends BaseModel{
@Override
public int hashCode(){
int result = 0;
if (id != null) {
result=id.hashCode();
}
int result=id.hashCode();
result=31*result+url.hashCode();
return result;
}