Skip to content

Commit

Permalink
fix: Fix theme installer not working
Browse files Browse the repository at this point in the history
  • Loading branch information
shdwmtr committed Nov 10, 2024
1 parent 0e45046 commit 559ae66
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion assets/core/util/theme_installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def __init__(self, host="localhost", port=9123):
self.thread = None
self.stop_event = asyncio.Event()

async def handler(self, websocket, path):
async def handler(self, websocket):

logger.log("Client connected")
try:
Expand Down
2 changes: 1 addition & 1 deletion src/pipes/terminal_pipe.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

#ifdef _WIN32
extern "C" {
__declspec(dllexport) const int CreateTerminalPipe()
const int CreateTerminalPipe()
{
HANDLE hPipe = CreateFileA(R"(\\.\pipe\MillenniumStdoutPipe)", GENERIC_WRITE, 0, NULL, OPEN_EXISTING, 0, NULL);

Expand Down

0 comments on commit 559ae66

Please sign in to comment.