Skip to content

Commit

Permalink
Update layer to 179
Browse files Browse the repository at this point in the history
  • Loading branch information
painor committed May 11, 2024
1 parent 0471403 commit 2591c9c
Show file tree
Hide file tree
Showing 8 changed files with 345 additions and 95 deletions.
2 changes: 1 addition & 1 deletion gramjs/Version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const version = "2.20.14";
export const version = "2.20.14";
4 changes: 3 additions & 1 deletion gramjs/client/users.ts
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,9 @@ export async function getMe<
false
) as Api.InputPeerUser;
}
return inputPeer ? (client._selfInputPeer as unknown as R) : (me as unknown as R);
return inputPeer
? (client._selfInputPeer as unknown as R)
: (me as unknown as R);
}

/** @hidden */
Expand Down
2 changes: 1 addition & 1 deletion gramjs/tl/AllTLObjects.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export const LAYER = 177;
export const LAYER = 179;

import { Api } from "./";

Expand Down
Loading

0 comments on commit 2591c9c

Please sign in to comment.