Fix Markdown preview (#368)

This commit is contained in:
Thomas Miceli
2024-11-02 01:05:43 +01:00
committed by GitHub
parent 97b9fa1100
commit d537153785
4 changed files with 11 additions and 6 deletions

View File

@ -33,7 +33,7 @@ type testServer struct {
func newTestServer() (*testServer, error) {
s := &testServer{
server: web.NewServer(true, path.Join(config.GetHomeDir(), "tmp", "sessions")),
server: web.NewServer(true, path.Join(config.GetHomeDir(), "tmp", "sessions"), true),
}
go s.start()