Skip to content

Instantly share code, notes, and snippets.

@RoootTheFox
Last active July 13, 2025 19:00
Show Gist options
  • Save RoootTheFox/d7c079050b65d4d6332ee0be4d5feaeb to your computer and use it in GitHub Desktop.
Save RoootTheFox/d7c079050b65d4d6332ee0be4d5feaeb to your computer and use it in GitHub Desktop.
signal desktop pin limit remove

bypass signal chat pin limit (4) using signal desktop

  1. install nodejs, pnpm and stuff
  2. git clone https://github.com/signalapp/Signal-Desktop
  3. apply patch below
  4. run pnpm run build:release
  5. run the signal-desktop binary in release/linux-unpacked (will be different if ur on mac/windows obv)
  6. link ur session
  7. pin as many chats as u want !!
diff --git a/ts/state/ducks/conversations.ts b/ts/state/ducks/conversations.ts
index a6c6c7efc..1964917fc 100644
--- a/ts/state/ducks/conversations.ts
+++ b/ts/state/ducks/conversations.ts
@@ -1762,7 +1762,7 @@ function setPinned(
new Array<string>()
);
- if (pinnedConversationIds.length >= 4) {
+ if (false) {
return {
type: SHOW_TOAST,
payload: {
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment