Skip to content

Commit

Permalink
Fix local db path
Browse files Browse the repository at this point in the history
  • Loading branch information
sukso96100 committed Jul 3, 2023
1 parent 7a00ea4 commit c17fc84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ class _KioskMainPageState extends State<KioskMainPage> {
setState(() {
_timer = timer;
db = sqlite3lib.sqlite3
.open("$envVars['HOME']/ubuntu_kr_qr_kiosk_check_in_db.db");
.open(envVars['HOME']! + "/ubuntu_kr_qr_kiosk_check_in_db.db");
});
createTable(db);
QuickUsb.init().whenComplete(() => print("QuickUsb Init"));
Expand Down

0 comments on commit c17fc84

Please sign in to comment.