Quellcode durchsuchen

Stay on the same page after moving a message

master
Zach DeCook vor 3 Jahren
committed by Simon Ser
Ursprung
Commit
0aff774c5d
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden GPG-Schlüssel-ID: FDE7BE0E88F5E48
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. +1
    -1
      plugins/base/routes.go

+ 1
- 1
plugins/base/routes.go Datei anzeigen

@@ -753,7 +753,7 @@ func handleMove(ctx *alps.Context) error {
if path := formOrQueryParam(ctx, "next"); path != "" {
return ctx.Redirect(http.StatusFound, path)
}
return ctx.Redirect(http.StatusFound, fmt.Sprintf("/mailbox/%v", url.PathEscape(to)))
return ctx.Redirect(http.StatusFound, fmt.Sprintf("/mailbox/%v", url.PathEscape(mboxName)))
}

func handleDelete(ctx *alps.Context) error {


Laden…
Abbrechen
Speichern