mirror of
https://github.com/oxen-io/session-android.git
synced 2025-02-17 15:28:25 +00:00
parent
1beed21032
commit
5b788fe188
@ -56,7 +56,7 @@ public class CanonicalAddressDatabase {
|
|||||||
public static CanonicalAddressDatabase getInstance(Context context) {
|
public static CanonicalAddressDatabase getInstance(Context context) {
|
||||||
synchronized (lock) {
|
synchronized (lock) {
|
||||||
if (instance == null)
|
if (instance == null)
|
||||||
instance = new CanonicalAddressDatabase(context);
|
instance = new CanonicalAddressDatabase(context.getApplicationContext());
|
||||||
|
|
||||||
return instance;
|
return instance;
|
||||||
}
|
}
|
||||||
@ -69,7 +69,7 @@ public class CanonicalAddressDatabase {
|
|||||||
|
|
||||||
public void reset(Context context) {
|
public void reset(Context context) {
|
||||||
DatabaseHelper old = this.databaseHelper;
|
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();
|
old.close();
|
||||||
fillCache();
|
fillCache();
|
||||||
}
|
}
|
||||||
|
@ -85,7 +85,7 @@ public class DatabaseFactory {
|
|||||||
public static DatabaseFactory getInstance(Context context) {
|
public static DatabaseFactory getInstance(Context context) {
|
||||||
synchronized (lock) {
|
synchronized (lock) {
|
||||||
if (instance == null)
|
if (instance == null)
|
||||||
instance = new DatabaseFactory(context);
|
instance = new DatabaseFactory(context.getApplicationContext());
|
||||||
|
|
||||||
return instance;
|
return instance;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user