Skip to content

Commit

Permalink
Fix typeahead error in DM composer (#247)
Browse files Browse the repository at this point in the history
* [FIX] Error involving typeahead in DM composer, close #189
  • Loading branch information
rougetimelord authored Apr 13, 2024
1 parent 8aff16c commit cca122f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "blue-blocker",
"version": "0.3.8",
"version": "0.3.9",
"author": "DanielleMiu",
"description": "Blocks all Twitter Blue verified users on twitter.com",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion src/manifest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { defineManifest } from "@crxjs/vite-plugin";
export default defineManifest({
name: "Blue Blocker",
description: "Blocks all Twitter Blue verified users on twitter.com",
version: "0.3.8",
version: "0.3.9",
manifest_version: 3,
icons: {
"128": "icon/icon-128.png",
Expand Down
4 changes: 2 additions & 2 deletions src/parsers/search.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ export function HandleTypeahead(e: CustomEvent<BlueBlockerEvent>, body: Body, co
is_blue_verified: user.ext_is_blue_verified,
legacy: {
blocking: user?.is_blocked || false,
followed_by: user.social_context.followed_by,
following: user.social_context.following,
followed_by: user?.social_context.followed_by || false,
following: user?.social_context.following || false,
name: user.name,
screen_name: user.screen_name,
verified: user.verified,
Expand Down

0 comments on commit cca122f

Please sign in to comment.