mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-23 18:15:22 +00:00
parent
1beed21032
commit
5b788fe188
@ -56,7 +56,7 @@ public class CanonicalAddressDatabase {
|
||||
public static CanonicalAddressDatabase getInstance(Context context) {
|
||||
synchronized (lock) {
|
||||
if (instance == null)
|
||||
instance = new CanonicalAddressDatabase(context);
|
||||
instance = new CanonicalAddressDatabase(context.getApplicationContext());
|
||||
|
||||
return instance;
|
||||
}
|
||||
@ -69,7 +69,7 @@ public class CanonicalAddressDatabase {
|
||||
|
||||
public void reset(Context context) {
|
||||
DatabaseHelper old = this.databaseHelper;
|
||||
this.databaseHelper = new DatabaseHelper(context, DATABASE_NAME, null, DATABASE_VERSION);
|
||||
this.databaseHelper = new DatabaseHelper(context.getApplicationContext(), DATABASE_NAME, null, DATABASE_VERSION);
|
||||
old.close();
|
||||
fillCache();
|
||||
}
|
||||
|
@ -85,7 +85,7 @@ public class DatabaseFactory {
|
||||
public static DatabaseFactory getInstance(Context context) {
|
||||
synchronized (lock) {
|
||||
if (instance == null)
|
||||
instance = new DatabaseFactory(context);
|
||||
instance = new DatabaseFactory(context.getApplicationContext());
|
||||
|
||||
return instance;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user