File tree 3 files changed +8
-7
lines changed
3 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ pub mod android {
43
43
match DATASTORE {
44
44
Some ( ref ds) => ds. clone ( ) ,
45
45
None => {
46
- let db_dir = dirs:: db_path ( ) . to_str ( ) . unwrap ( ) . to_string ( ) ;
46
+ let db_dir = dirs:: db_path ( false ) . to_str ( ) . unwrap ( ) . to_string ( ) ;
47
47
DATASTORE = Some ( Datastore :: new ( db_dir, false ) ) ;
48
48
openDatastore ( )
49
49
}
Original file line number Diff line number Diff line change @@ -74,12 +74,13 @@ pub fn get_log_dir() -> Result<PathBuf, ()> {
74
74
}
75
75
}
76
76
77
- pub fn db_path ( ) -> PathBuf {
77
+ pub fn db_path ( testing : bool ) -> PathBuf {
78
78
let mut db_path = get_data_dir ( ) . unwrap ( ) ;
79
- #[ cfg( debug_assertions) ]
80
- db_path. push ( "sqlite-testing.db" ) ;
81
- #[ cfg( not( debug_assertions) ) ]
82
- db_path. push ( "sqlite.db" ) ;
79
+ if testing {
80
+ db_path. push ( "sqlite-testing.db" ) ;
81
+ } else {
82
+ db_path. push ( "sqlite.db" ) ;
83
+ }
83
84
db_path
84
85
}
85
86
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ fn main() {
46
46
47
47
let config = config:: create_config ( testing) ;
48
48
49
- let db_path = dirs:: db_path ( ) . to_str ( ) . unwrap ( ) . to_string ( ) ;
49
+ let db_path = dirs:: db_path ( testing ) . to_str ( ) . unwrap ( ) . to_string ( ) ;
50
50
info ! ( "Using DB at path {:?}" , db_path) ;
51
51
52
52
let asset_path = get_asset_path ( ) ;
You can’t perform that action at this time.
0 commit comments