Skip to content

Commit

Permalink
Merge pull request #2321 from calvinchd/hyprland-runtime-err
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexays committed Jul 16, 2023
2 parents 7a5e702 + 0f6eff1 commit 85b4ff4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/hyprland/backend.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ std::string IPC::getSocket1Reply(const std::string& rq) {
return "";
}
response.append(buffer, sizeWritten);
} while (sizeWritten == 8192);
} while (sizeWritten > 0);

close(SERVERSOCKET);
return response;
Expand Down

0 comments on commit 85b4ff4

Please sign in to comment.