use of org.thoughtcrime.securesms.jobs.RefreshOwnProfileJob in project Signal-Android by WhisperSystems.
the class AttributesMigrationJob method performMigration.
@Override
public void performMigration() {
Log.i(TAG, "Scheduling attributes upload and profile refresh job chain");
ApplicationDependencies.getJobManager().startChain(new RefreshAttributesJob()).then(new RefreshOwnProfileJob()).enqueue();
}
use of org.thoughtcrime.securesms.jobs.RefreshOwnProfileJob in project Signal-Android by signalapp.
the class AttributesMigrationJob method performMigration.
@Override
public void performMigration() {
Log.i(TAG, "Scheduling attributes upload and profile refresh job chain");
ApplicationDependencies.getJobManager().startChain(new RefreshAttributesJob()).then(new RefreshOwnProfileJob()).enqueue();
}
Aggregations