mirror of
https://codeberg.org/Bazsalanszky/Infinity-For-Lemmy.git
synced 2025-10-05 21:39:50 +02:00
Probably fix duplicate posts problem.
This commit is contained in:
@@ -167,8 +167,6 @@ public class ViewVideoActivity extends AppCompatActivity {
|
||||
|
||||
mediaDownloader = new MediaDownloaderImpl();
|
||||
|
||||
mediaDownloader = new MediaDownloaderImpl();
|
||||
|
||||
Intent intent = getIntent();
|
||||
mVideoUri = intent.getData();
|
||||
postTitle = intent.getStringExtra(EXTRA_POST_TITLE);
|
||||
|
@@ -533,4 +533,9 @@ public class Post implements Parcelable {
|
||||
}
|
||||
return ((Post) obj).id.equals(id);
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
return id.hashCode();
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user