Welp, another typo

This commit is contained in:
Nicolas Mailloux 2021-08-19 08:47:56 -04:00
parent 0cbf1a59e6
commit 01f59f1f31
2 changed files with 2 additions and 1 deletions

View file

@ -954,6 +954,7 @@ void MainWindow::showToast(QString messageToDisplay) {
toastWindow->show();
if(messageToDisplay == "Connection successful") {
otaManagerWindow = new otaManager(this);
connect(otaManagerWindow, SIGNAL(canOtaUpdate(bool)), SLOT(openUpdateDialogOTA(bool)));
otaManagerWindow->setAttribute(Qt::WA_DeleteOnClose);

View file

@ -173,7 +173,7 @@ reader::reader(QWidget *parent) :
string_writeconfig("/tmp/inkboxBookPath", book_file_str);
// Calling InkBox daemon (ibxd) via FIFO interface to run bookconfig_mount
if(checkconfig(".config/16-global_reading_settings") == true) {
if(checkconfig(".config/16-global_reading_settings/config") == true) {
string_writeconfig("/opt/ibxd", "bookconfig_mount\n");
// Callback handler to wait until bookconfig_mount has finished execution
while(true) {