diff --git a/frontend/src/screens/BackupNode.tsx b/frontend/src/screens/BackupNode.tsx index d0a51f3f..5ca6688c 100644 --- a/frontend/src/screens/BackupNode.tsx +++ b/frontend/src/screens/BackupNode.tsx @@ -50,7 +50,7 @@ export function BackupNode() { const url = window.URL.createObjectURL(blob); const a = document.createElement("a"); a.href = url; - a.download = "nwc.bkp"; + a.download = "albyhub.bkp"; document.body.appendChild(a); a.click(); window.URL.revokeObjectURL(url); diff --git a/http/http_service.go b/http/http_service.go index 52aa03a2..d10f559e 100644 --- a/http/http_service.go +++ b/http/http_service.go @@ -957,7 +957,7 @@ func (httpSvc *HttpService) createBackupHandler(c echo.Context) error { } c.Response().Header().Set("Content-Type", "application/octet-stream") - c.Response().Header().Set("Content-Disposition", "attachment; filename=nwc.bkp") + c.Response().Header().Set("Content-Disposition", "attachment; filename=albyhub.bkp") c.Response().WriteHeader(http.StatusOK) c.Response().Write(buffer.Bytes()) return nil diff --git a/wails/wails_handlers.go b/wails/wails_handlers.go index 251ef8d5..d4d7ddb9 100644 --- a/wails/wails_handlers.go +++ b/wails/wails_handlers.go @@ -720,7 +720,7 @@ func (app *WailsApp) WailsRequestRouter(route string, method string, body string saveFilePath, err := runtime.SaveFileDialog(ctx, runtime.SaveDialogOptions{ Title: "Save Backup File", - DefaultFilename: "nwc.bkp", + DefaultFilename: "albyhub.bkp", }) if err != nil { logger.Logger.WithFields(logrus.Fields{ @@ -768,7 +768,7 @@ func (app *WailsApp) WailsRequestRouter(route string, method string, body string backupFilePath, err := runtime.OpenFileDialog(ctx, runtime.OpenDialogOptions{ Title: "Select Backup File", - DefaultFilename: "nwc.bkp", + DefaultFilename: "albyhub.bkp", }) if err != nil { logger.Logger.WithFields(logrus.Fields{