mirror of
https://github.com/oxen-io/session-android.git
synced 2025-06-11 00:08:37 +00:00
12 lines
334 B
Java
12 lines
334 B
Java
package org.thoughtcrime.securesms.jobmanager.migrations;
|
|
|
|
/**
|
|
* Unfortunately there was a bug in {@link RecipientIdFollowUpJobMigration} that requires it to be
|
|
* run again.
|
|
*/
|
|
public class RecipientIdFollowUpJobMigration2 extends RecipientIdFollowUpJobMigration {
|
|
public RecipientIdFollowUpJobMigration2() {
|
|
super(4);
|
|
}
|
|
}
|