Skip to content

Fix copy to clipboard STA thread issue & Support retry for copy & Async build-in shortcut model & Fix build shortcuts text replace issue & Fix startup window hide issue #3314

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 100 commits into from
May 2, 2025

Conversation

Jack251970
Copy link
Contributor

@Jack251970 Jack251970 commented Mar 6, 2025

Fix copy to clipboard STA thread issue

Fix CopyToClipboard function in JsonRPCAPI for JsonRPCV2 plugins: we should use STA thread to execute clipboard options.

Close #3071.

Add retry for clipboard copy

Sometimes clipboard is locked, we need to wait and retry.

Async buildin shortcut model

Since new clipboard function need async, we should add support for asynchronous build-in shortcut model.

Fix query update issues

Fix build shortcuts text replace issue

Fix build shortcuts text replace issue from jjw24 and remove global query delay

image

Fix possible ui thread issue

Check dispatcher access before invoking dispatch to fix possible ui thread issue

Fix startup window hide issue

Fix issue that HotkeyMapper initialization will steal focus from main window which can cause main window forces to hide during startup.

Test

  • Copy to clipboard (text, file) on csharp plugins
  • Copy to clipboard (text, file) on JsonRPCV2 plugins
  • Get text from clipboard
  • Get text from clipboard asynchronously
  • Builtin shortcuts are replaced when we query them

@prlabeler prlabeler bot added the bug Something isn't working label Mar 6, 2025

This comment has been minimized.

Copy link

gitstream-cm bot commented Mar 6, 2025

Be a legend 🏆 by adding a before and after screenshot of the changes you made, especially if they are around UI/UX.

Copy link
Contributor

coderabbitai bot commented Mar 6, 2025

📝 Walkthrough

Walkthrough

This set of changes introduces robust handling for clipboard operations on STA (Single-Threaded Apartment) threads, including the addition of OleInitialize and OleUninitialize declarations and new asynchronous helper methods for running actions on STA threads. The CopyToClipboard method is refactored to run clipboard operations on an STA thread with retry logic, addressing threading issues. Shortcut model classes are restructured with new base and async variants. UI filtering for plugins is migrated to use CollectionViewSource with dynamic filtering. Additional minor improvements include exception handling updates, static property additions, and resource string enhancements.

Changes

File(s) Change Summary
Flow.Launcher.Infrastructure/Win32Helper.cs, Flow.Launcher.Infrastructure/NativeMethods.txt Added OleInitialize/OleUninitialize declarations and public async methods to run actions on STA threads.
Flow.Launcher/PublicAPIInstance.cs Refactored CopyToClipboard to async, added retry logic on STA threads, improved error handling and notifications.
Flow.Launcher.Infrastructure/UserSettings/CustomShortcutModel.cs Refactored shortcut models: introduced base/async classes, separated expansion logic, updated constructors and conversions.
Flow.Launcher.Infrastructure/UserSettings/Settings.cs Changed BuiltinShortcuts to use new base/async shortcut models, updated clipboard shortcut to async variant.
Flow.Launcher/ViewModel/MainViewModel.cs Refactored query methods, shortcut expansion, and dispatcher logic; improved cancellation and error handling.
Flow.Launcher/App.xaml.cs Added static JTF and Exiting properties, made _mainWindow static, moved HotKeyMapper.Initialize(), updated exception registration.
Flow.Launcher/Helper/ErrorReporting.cs Improved exception reporting, renamed handler, dispatched unobserved task exceptions to UI, added CallerMemberName.
Flow.Launcher/Languages/en.xaml Added new localized string resource "failedToCopy".
Flow.Launcher/SettingPages/ViewModels/SettingsPanePluginsViewModel.cs, .../Views/SettingsPanePlugins.xaml, .../Views/SettingsPanePlugins.xaml.cs Migrated plugin filtering to CollectionViewSource with dynamic filter event, removed filtered property, added filter method, updated bindings and event handling.
Flow.Launcher/SettingPages/ViewModels/SettingsPanePluginStoreViewModel.cs Reformatted LINQ expression for external plugins property.
Flow.Launcher.Plugin/Query.cs, Flow.Launcher.Plugin/Interfaces/IPublicAPI.cs Improved XML comments/documentation.
Flow.Launcher.Core/Plugin/QueryBuilder.cs, Flow.Launcher.Core/Resource/Theme.cs, Flow.Launcher/Helper/DataWebRequestFactory.cs Minor formatting, whitespace, and syntax improvements.
Flow.Launcher/MainWindow.xaml.cs Removed HotKeyMapper.Initialize() from OnLoaded event.

Sequence Diagram(s)

sequenceDiagram
    participant Plugin/External as Plugin/External Caller
    participant PublicAPI as PublicAPIInstance
    participant Win32Helper as Win32Helper
    participant STAThread as STA Thread
    participant Clipboard as Clipboard
    participant UI as UI/Notification

    Plugin/External->>PublicAPI: CopyToClipboard(string)
    activate PublicAPI
    PublicAPI->>Win32Helper: StartSTATaskAsync(Clipboard.SetText/SetFileDropList)
    activate Win32Helper
    Win32Helper->>STAThread: Create STA Thread, call OleInitialize
    activate STAThread
    STAThread->>Clipboard: SetText/SetFileDropList
    Clipboard-->>STAThread: (May throw if clipboard is locked)
    STAThread-->>Win32Helper: Complete, call OleUninitialize
    deactivate STAThread
    Win32Helper-->>PublicAPI: Task result (success/failure)
    deactivate Win32Helper
    PublicAPI->>UI: Show notification (success/failure)
    deactivate PublicAPI
Loading

Assessment against linked issues

Objective Addressed Explanation
Fix CopyToClipboard throwing STA thread exception for JSON-RPC v2 plugins (#3071)

Possibly related PRs

Suggested labels

Code Quality

Suggested reviewers

  • Yusyuriv
  • jjw24
  • taooceros

Poem

In a warren of code, where the clipboard once failed,
A rabbit hopped in, and on STA threads sailed.
With retries and care, it copied with grace—
No more exceptions, no more disgrace!
Shortcuts and plugins now filter with glee,
A bug fixed, a carrot for all—let’s celebrate with tea!
🥕✨


📜 Recent review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 1cec01c and d023ecd.

📒 Files selected for processing (2)
  • Flow.Launcher/App.xaml.cs (4 hunks)
  • Flow.Launcher/ViewModel/MainViewModel.cs (14 hunks)
🚧 Files skipped from review as they are similar to previous changes (2)
  • Flow.Launcher/App.xaml.cs
  • Flow.Launcher/ViewModel/MainViewModel.cs
⏰ Context from checks skipped due to timeout of 90000ms (2)
  • GitHub Check: gitStream.cm
  • GitHub Check: build
✨ Finishing Touches
  • 📝 Generate Docstrings

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Support

Need help? Create a ticket on our support page for assistance with any issues or questions.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR.
  • @coderabbitai generate sequence diagram to generate a sequence diagram of the changes in this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@Yusyuriv
Copy link
Member

Yusyuriv commented Mar 6, 2025

I am very against this. This is the core, most used, functionality, and it should be available to everyone. Plugins shouldn't need to reinvent the wheel every time. Especially considering Node and Python don't provide a way to do this. I remember seeing one plugin that packed another binary with itself just so it could copy text, which is absolutely ridiculous.

@Jack251970
Copy link
Contributor Author

Jack251970 commented Mar 6, 2025

I am very against this. This is the core, most used, functionality, and it should be available to everyone. Plugins shouldn't need to reinvent the wheel every time. Especially considering Node and Python don't provide a way to do this. I remember seeing one plugin that packed another binary with itself just so it could copy text, which is absolutely ridiculous.

Well, could you please give me the sample to test?

@Jack251970 Jack251970 changed the title Delete CopyToClipboard function in JsonRPC api [TODO] Fix CopyToClipboard function in JsonRPC api Mar 6, 2025
@Yusyuriv Yusyuriv marked this pull request as draft March 6, 2025 05:22
@Jack251970 Jack251970 changed the title [TODO] Fix CopyToClipboard function in JsonRPC api Fix CopyToClipboard function in JsonRPC api Mar 6, 2025
@Jack251970 Jack251970 changed the title Fix CopyToClipboard function in JsonRPC api Fix CopyToClipboard function in JsonRPCAPI for JsonRPCV2 plugins Mar 6, 2025
@Yusyuriv
Copy link
Member

Yusyuriv commented Mar 6, 2025

demo-plugin.zip

After installing this plugin, type rpc2. It will have one result. Select that result. You'll get a message box saying if the text was copied successfully or not.

@Jack251970
Copy link
Contributor Author

demo-plugin.zip

After installing this plugin, type rpc2. It will have one result. Select that result. You'll get a message box saying if the text was copied successfully or not.

Many thanks! Sorry, I don't see this as a bug unique to the V2 plugin. In that case, the bug could be fixed.

@Jack251970
Copy link
Contributor Author

Jack251970 commented Mar 6, 2025

demo-plugin.zip

After installing this plugin, type rpc2. It will have one result. Select that result. You'll get a message box saying if the text was copied successfully or not.

Sorry I cannot open your demo plugin. I have used 1.19.5 release version of FL (master branch) and downloaded embedded node.js environment from FL but I got this issue:

image

I want to check it by myself, but I really know little about JavaScript. Could you please fix it?

@Yusyuriv
Copy link
Member

Yusyuriv commented Mar 6, 2025

Could you please install a newer version of NodeJS (v22), specify it in settings (General — Node.js Path) and try again? Flow currently uses very old version that has reached end-of-life already.

This comment has been minimized.

@Jack251970 Jack251970 changed the title Fix CopyToClipboard function in JsonRPCAPI for JsonRPCV2 plugins Fix copy to clipboard STA thread issue & Add retry for text copy Mar 6, 2025
@Jack251970
Copy link
Contributor Author

Could you please install a newer version of NodeJS (v22), specify it in settings (General — Node.js Path) and try again? Flow currently uses very old version that has reached end-of-life already.

Thanks, I think I have fixed it. Now could you please help me check if copy to clipboard (directory) with JsonRPCV2 plugins can work?

@Jack251970
Copy link
Contributor Author

Could you please install a newer version of NodeJS (v22), specify it in settings (General — Node.js Path) and try again? Flow currently uses very old version that has reached end-of-life already.

Thanks, I think I have fixed it. Now could you please help me check if copy to clipboard (directory) with JsonRPCV2 plugins can work?

Nvm, I have checked it.

@Jack251970 Jack251970 marked this pull request as ready for review March 6, 2025 08:40
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🧹 Nitpick comments (5)
Flow.Launcher.Infrastructure/Win32Helper.cs (2)

122-125: Consider propagating exceptions rather than suppressing them.

The current implementation catches all exceptions but doesn't propagate them to the caller, making it difficult to diagnose issues when they occur.

-                catch (System.Exception)
-                {
-                    taskCompletionSource.SetResult();
-                }
+                catch (System.Exception ex)
+                {
+                    taskCompletionSource.SetException(ex);
+                }

154-157: Consider propagating exceptions rather than returning default values.

Similar to the non-generic method, this implementation catches all exceptions but doesn't propagate them to the caller. Instead, it returns a default value which could mask errors.

-                catch (System.Exception)
-                {
-                    taskCompletionSource.SetResult(default);
-                }
+                catch (System.Exception ex)
+                {
+                    taskCompletionSource.SetException(ex);
+                }
Flow.Launcher/PublicAPIInstance.cs (3)

131-156: Consolidate repetitive clipboard copy logic.

The logic for direct file/folder copying (lines 131–156) and text copying (lines 160–181) mostly duplicates the retry mechanism and message handling. Consider extracting common retry logic into a shared helper or unify this code block to improve maintainability and clarity.

Also applies to: 160-181


164-164: Fix minor typo in comment.

Change "shouold" to "should" for clarity.

- // We shouold use SetText instead of SetDataObject to avoid the clipboard being locked by other applications
+ // We should use SetText instead of SetDataObject to avoid the clipboard being locked by other applications

185-204: Reconsider returning the exception object from RetryActionOnSTAThreadAsync.

Returning an Exception object directly is functional, but throwing an exception or returning a status (e.g., bool) might simplify the calling code. The current design requires the caller to check for null vs. non-null to determine success/failure, which can be error-prone or less conventional.

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 9f8e829 and e5ad777.

📒 Files selected for processing (5)
  • Flow.Launcher.Infrastructure/NativeMethods.txt (1 hunks)
  • Flow.Launcher.Infrastructure/UserSettings/Settings.cs (1 hunks)
  • Flow.Launcher.Infrastructure/Win32Helper.cs (2 hunks)
  • Flow.Launcher/Languages/en.xaml (1 hunks)
  • Flow.Launcher/PublicAPIInstance.cs (1 hunks)
⏰ Context from checks skipped due to timeout of 90000ms (3)
  • GitHub Check: gitStream.cm
  • GitHub Check: gitStream.cm
  • GitHub Check: gitStream.cm
🔇 Additional comments (4)
Flow.Launcher.Infrastructure/NativeMethods.txt (1)

21-22: Good addition of required OLE function declarations.

These OLE function declarations are necessary for properly initializing and uninitializing the clipboard operations on STA threads, ensuring proper COM interop which is critical for clipboard functionality.

Flow.Launcher/Languages/en.xaml (1)

339-339: Good addition of error message for clipboard operations.

This new string resource will help provide better user feedback when clipboard operations fail, improving the overall user experience.

Flow.Launcher.Infrastructure/UserSettings/Settings.cs (1)

251-251:

✅ Verification successful

Ensure clipboard operations run on STA thread.

Good change to use the new StartSTATaskAsync method for clipboard text retrieval. This ensures proper threading model for COM operations.

Note that using .Result could potentially lead to deadlocks in certain scenarios, but since this is only creating a model with a function reference to be executed later, it should be fine in this context.


🏁 Script executed:

#!/bin/bash
# Check if this pattern is used elsewhere in the codebase where it might cause problems
rg "StartSTATaskAsync.*\.Result" --type cs

Length of output: 248


Verified STA Thread Usage for Clipboard Operations

After reviewing the code and verifying the pattern usage in the codebase, it’s clear that the call to Win32Helper.StartSTATaskAsync(Clipboard.GetText).Result is only present in Flow.Launcher.Infrastructure/UserSettings/Settings.cs. Since this function is used to defer clipboard text retrieval until later execution and is correctly encapsulated within a model creation, the use of .Result here is acceptable and does not pose a deadlock risk in this context.

  • Verified that the snippet is uniquely located in the intended file.
  • Confirmed that clipboard operations are safely executed on an STA thread.
Flow.Launcher.Infrastructure/Win32Helper.cs (1)

104-174: Good implementation of STA thread execution helpers.

The implementation of these helper methods provides a clean way to execute actions on an STA thread, which is necessary for clipboard and other COM operations. Properly initializing and uninitializing OLE ensures resources are managed correctly.

Copy link

gitstream-cm bot commented Mar 6, 2025

🥷 Code experts: onesounds

Jack251970, onesounds have most 👩‍💻 activity in the files.
Jack251970, onesounds have most 🧠 knowledge in the files.

See details

Flow.Launcher.Infrastructure/NativeMethods.txt

Activity based on git-commit:

Jack251970 onesounds
MAR 30 additions & 3 deletions
FEB 4 additions & 1 deletions
JAN 1 additions & 4 deletions
DEC 24 additions & 2 deletions
NOV
OCT

Knowledge based on git-blame:
Jack251970: 100%

Flow.Launcher.Infrastructure/UserSettings/Settings.cs

Activity based on git-commit:

Jack251970 onesounds
MAR 3 additions & 2 deletions 10 additions & 0 deletions
FEB 10 additions & 4 deletions
JAN 17 additions & 4 deletions
DEC 1 additions & 1 deletions
NOV
OCT

Knowledge based on git-blame:
onesounds: 25%
Jack251970: 7%

Flow.Launcher.Infrastructure/Win32Helper.cs

Activity based on git-commit:

Jack251970 onesounds
MAR 360 additions & 159 deletions
FEB 13 additions & 16 deletions 22 additions & 0 deletions
JAN 0 additions & 138 deletions
DEC 243 additions & 4 deletions
NOV
OCT

Knowledge based on git-blame:
Jack251970: 100%

Flow.Launcher/Languages/en.xaml

Activity based on git-commit:

Jack251970 onesounds
MAR 6 additions & 3 deletions 7 additions & 3 deletions
FEB 10 additions & 7 deletions
JAN 1 additions & 0 deletions
DEC
NOV
OCT

Knowledge based on git-blame:
onesounds: 44%
Jack251970: 2%

Flow.Launcher/PublicAPIInstance.cs

Activity based on git-commit:

Jack251970 onesounds
MAR 21 additions & 19 deletions
FEB 24 additions & 3 deletions
JAN 45 additions & 47 deletions
DEC 25 additions & 32 deletions
NOV 16 additions & 0 deletions
OCT

Knowledge based on git-blame:
Jack251970: 22%
onesounds: 1%

To learn more about /:\ gitStream - Visit our Docs

@Jack251970 Jack251970 added the enhancement New feature or request label Mar 6, 2025
@Jack251970 Jack251970 changed the title Fix copy to clipboard STA thread issue & Add retry for text copy Fix copy to clipboard STA thread issue & Add retry for copy Mar 9, 2025
@Jack251970 Jack251970 requested a review from jjw24 March 10, 2025 04:11
@Jack251970
Copy link
Contributor Author

The clear logs function in About page freezes the entire settings window. Could you check if reproducible on your end please.

Now I can reproduce it with clear cache option. Will fix it soon.

@jjw24 Fixed in #3499.

@jjw24
Copy link
Member

jjw24 commented Apr 30, 2025

Can you reproduce the clear logs function freeze in this PR?

@Jack251970
Copy link
Contributor Author

Jack251970 commented Apr 30, 2025

Can you reproduce the clear logs function freeze in this PR?

No, I cannot reproduce that. I check the changes I made and I found the only change I made is setting recursive to false and I have reverted this in
Use recursive false

@jjw24
Copy link
Member

jjw24 commented Apr 30, 2025

hm I have it happen on both laptops and both laptop's dev build had no issues that's why I thought it's related to this PR, but I can't reproduce it now. Let's not worry about it then if you haven't made a change in this area and I can't reliably reproduce.

@Jack251970
Copy link
Contributor Author

Could you please still pull out the results update fix into its own PR because I am still not confident enough with the change (still getting weird occasional missing Programs plugin results I cannot reproduce reliably) and it needs to be tested and captured on its own separately.

Before starting this, I would like to ask you two things:

  • When the Program plugin cannot be queried, can other plugins be queried?
  • In QueryResultsAsync function, I added Debug-level logs for the entire process from query input to plugin query, that is, when you start entering something, Flow will start outputting logs. Are you sure there is no log at all for the Program plugin that cannot be queried?

This comment has been minimized.

This comment has been minimized.

@Jack251970
Copy link
Contributor Author

@jjw24 I reverted changes about the update logic and please check

@jjw24
Copy link
Member

jjw24 commented Apr 30, 2025

When the Program plugin cannot be queried, can other plugins be queried?

Other plugins like Explorer can be queried.

In QueryResultsAsync function, I added Debug-level logs for the entire process from query input to plugin query, that is, when you start entering something, Flow will start outputting logs. Are you sure there is no log at all for the Program plugin that cannot be queried?

Debug turned on, no logs for Programs plugin and logs for others like Explorer plugin.

Copy link

github-actions bot commented May 2, 2025

@check-spelling-bot Report

🔴 Please review

See the 📂 files view, the 📜action log, or 📝 job summary for details.

❌ Errors and Warnings Count
❌ forbidden-pattern 24
⚠️ non-alpha-in-dictionary 19

See ❌ Event descriptions for more information.

Forbidden patterns 🙅 (1)

In order to address this, you could change the content to not match the forbidden patterns (comments before forbidden patterns may help explain why they're forbidden), add patterns for acceptable instances, or adjust the forbidden patterns themselves.

These forbidden patterns matched content:

s.b. workaround(s)

\bwork[- ]arounds?\b
If the flagged items are 🤯 false positives

If items relate to a ...

  • binary file (or some other file you wouldn't want to check at all).

    Please add a file path to the excludes.txt file matching the containing file.

    File paths are Perl 5 Regular Expressions - you can test yours before committing to verify it will match your files.

    ^ refers to the file's path from the root of the repository, so ^README\.md$ would exclude README.md (on whichever branch you're using).

  • well-formed pattern.

    If you can write a pattern that would match it,
    try adding it to the patterns.txt file.

    Patterns are Perl 5 Regular Expressions - you can test yours before committing to verify it will match your lines.

    Note that patterns can't match multiline strings.

@jjw24 jjw24 enabled auto-merge (squash) May 2, 2025 04:23
Copy link
Member

@jjw24 jjw24 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Tested prior to latest commit:

  • result update has no issues
  • querying response is fast
  • no missing Programs plugin results after intense use
  • copying file, paths, bookmark urls

@jjw24 jjw24 merged commit 8bb96d7 into Flow-Launcher:dev May 2, 2025
5 checks passed
@jjw24 jjw24 removed enhancement New feature or request review in progress Indicates that a review is in progress for this PR Dev branch only An issue or fix for the Dev branch build 10 min review labels May 2, 2025
@Jack251970
Copy link
Contributor Author

Tested prior to latest commit:

  • result update has no issues
  • querying response is fast
  • no missing Programs plugin results after intense use
  • copying file, paths, bookmark urls

Good!

@jjw24
Copy link
Member

jjw24 commented May 2, 2025

Where is the PR for the changes you pulled out?

@Jack251970
Copy link
Contributor Author

Where is the PR for the changes you pulled out?

I will handle it now. I have not created PR yet.

@Jack251970
Copy link
Contributor Author

Where is the PR for the changes you pulled out?

Please check #3502.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging this pull request may close these issues.

BUG: CopyToClipboard method throws an error for JSON-RPC v2 plugins
4 participants