Skip to content

Fix BrowserBookmark '100% CPU' issue #3826

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

Open
wants to merge 4 commits into
base: dev
Choose a base branch
from

Conversation

dcog989
Copy link
Contributor

@dcog989 dcog989 commented Jul 13, 2025

Fix BrowserBookmark plugin locking threads at 100% CPU

The following files were modified to implement this fix:

  1. /Flow.Launcher.Plugin.BrowserBookmark.csproj

    • packages SkiaSharp and Svg.Skia added to output WEBP
  2. /Helper/FaviconHelper.cs

    • new method, TryConvertToWebp, added to take any image data and encode to WEBP
  3. /FirefoxBookmarkLoader.cs

    • LoadFaviconsFromDb to use the new helper which ensures only safe WEBP files are used by the UI, which resolves the CPU-locking.

Fixes #3748

# Fix BrowserBookmark plugin locking threads at 100% CPU

The following files were modified to implement this fix:

1. /Flow.Launcher.Plugin.BrowserBookmark.csproj
    - packages SkiaSharp and Svg.Skia added to output WEBP

2. /Helper/FaviconHelper.cs
    - new method, TryConvertToWebp, added to take any image data and encode to WEBP

3. /FirefoxBookmarkLoader.cs
    - LoadFaviconsFromDb to use the new helper which ensures only safe WEBP files are used by the UI, which resolves the CPU-locking. It was GZIPped SVGs that were causing the thread / CPU lock.
@prlabeler prlabeler bot added the bug Something isn't working label Jul 13, 2025
Copy link

gitstream-cm bot commented Jul 13, 2025

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

@coderabbitai coderabbitai bot added the enhancement New feature or request label Jul 13, 2025
Copy link
Contributor

coderabbitai bot commented Jul 13, 2025

📝 Walkthrough

"""

Walkthrough

The changes update the favicon extraction process for Firefox bookmarks by enhancing image data handling, introducing WebP conversion, and updating dependency packages. The code now attempts to convert favicon data to WebP, saves it with a unique filename, and removes previous SVG-specific logic. New dependencies for SVG and image processing are added.

Changes

Files/Paths Change Summary
Plugins/Flow.Launcher.Plugin.BrowserBookmark/FirefoxBookmarkLoader.cs Refactored favicon extraction: improved URL validation, SQL query, gzip handling, WebP conversion, unique file naming, and removed SVG/PNG logic.
Plugins/Flow.Launcher.Plugin.BrowserBookmark/Helper/FaviconHelper.cs Replaced SVG detection with WebP conversion logic using Svg.Skia and SkiaSharp; updated method signature and error handling.
Plugins/Flow.Launcher.Plugin.BrowserBookmark/Flow.Launcher.Plugin.BrowserBookmark.csproj Added Svg.Skia and SkiaSharp dependencies for enhanced image processing.

Sequence Diagram(s)

sequenceDiagram
    participant FirefoxBookmarkLoader
    participant Database
    participant FaviconHelper
    participant FileSystem

    FirefoxBookmarkLoader->>Database: Query for bookmark favicons (icon_id, data)
    loop For each favicon result
        FirefoxBookmarkLoader->>FaviconHelper: TryConvertToWebp(data)
        alt Conversion succeeds
            FaviconHelper-->>FirefoxBookmarkLoader: WebP image bytes
            FirefoxBookmarkLoader->>FileSystem: Save WebP file (domain + icon_id)
            FileSystem-->>FirefoxBookmarkLoader: File path
            FirefoxBookmarkLoader->>Bookmark: Update FaviconPath
        else Conversion fails
            FaviconHelper-->>FirefoxBookmarkLoader: null
        end
    end
Loading

Estimated code review effort

🎯 2 (Simple) | ⏱️ ~20 minutes

Possibly related PRs

Suggested reviewers

  • jjw24
    """

Note

⚡️ Unit Test Generation is now available in beta!

Learn more here, or try it out under "Finishing Touches" below.

✨ Finishing Touches
  • 📝 Generate Docstrings
🧪 Generate unit tests
  • Create PR with unit tests
  • Post copyable unit tests in a comment

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.
    • Explain this complex logic.
    • 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 explain this code block.
    • @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 explain its main purpose.
    • @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 generate unit tests to generate unit tests for 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.

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 (1)
Plugins/Flow.Launcher.Plugin.BrowserBookmark/Helper/FaviconHelper.cs (1)

70-123: Well-implemented WebP conversion with proper resource management.

The method correctly handles both SVG and bitmap formats with appropriate fallback logic. The WebP quality of 65 provides a good balance between file size and quality for favicons.

Consider making the WebP quality configurable in the future to allow users to adjust the trade-off between file size and quality:

-public static byte[] TryConvertToWebp(byte[] data)
+public static byte[] TryConvertToWebp(byte[] data, int quality = 65)

And update line 110:

-using (var webp = image.Encode(SKEncodedImageFormat.Webp, 65))
+using (var webp = image.Encode(SKEncodedImageFormat.Webp, quality))
📜 Review details

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

📥 Commits

Reviewing files that changed from the base of the PR and between 3cdf919 and 78b4c7d.

📒 Files selected for processing (3)
  • Plugins/Flow.Launcher.Plugin.BrowserBookmark/FirefoxBookmarkLoader.cs (2 hunks)
  • Plugins/Flow.Launcher.Plugin.BrowserBookmark/Flow.Launcher.Plugin.BrowserBookmark.csproj (1 hunks)
  • Plugins/Flow.Launcher.Plugin.BrowserBookmark/Helper/FaviconHelper.cs (2 hunks)
🧰 Additional context used
🧠 Learnings (3)
Plugins/Flow.Launcher.Plugin.BrowserBookmark/Flow.Launcher.Plugin.BrowserBookmark.csproj (5)
Learnt from: taooceros
PR: Flow-Launcher/Flow.Launcher#2616
File: Flow.Launcher/Flow.Launcher.csproj:7-7
Timestamp: 2024-10-08T15:52:58.573Z
Learning: In the Flow Launcher project, the version number in the `Flow.Launcher.csproj` file is dynamically updated during the CI/CD process.
Learnt from: Jack251970
PR: Flow-Launcher/Flow.Launcher#3572
File: Flow.Launcher/App.xaml.cs:214-216
Timestamp: 2025-07-06T12:21:37.947Z
Learning: In Flow Launcher, the UpdatePluginManifestAsync method in PluginsManifest.cs already has comprehensive internal try-catch handling that logs exceptions and returns false on failure rather than throwing, making external try-catch wrappers unnecessary.
Learnt from: Jack251970
PR: Flow-Launcher/Flow.Launcher#3791
File: Flow.Launcher.Core/Plugin/PluginManager.cs:293-295
Timestamp: 2025-07-01T05:46:13.251Z
Learning: In Flow.Launcher.Core/Plugin/PluginManager.cs, when checking if a plugin is modified within the PluginManager class itself, prefer using the internal static PluginModified(string id) method directly rather than going through API.PluginModified() for better performance and architectural design.
Learnt from: taooceros
PR: Flow-Launcher/Flow.Launcher#2442
File: Flow.Launcher.Plugin/Flow.Launcher.Plugin.csproj:4-4
Timestamp: 2024-10-08T15:52:58.573Z
Learning: In .NET 8, SourceLink is included by default, eliminating the need for the `Microsoft.SourceLink.GitHub` package.
Learnt from: taooceros
PR: Flow-Launcher/Flow.Launcher#2442
File: Flow.Launcher.Plugin/Flow.Launcher.Plugin.csproj:4-4
Timestamp: 2024-08-31T20:42:08.482Z
Learning: In .NET 8, SourceLink is included by default, eliminating the need for the `Microsoft.SourceLink.GitHub` package.
Plugins/Flow.Launcher.Plugin.BrowserBookmark/FirefoxBookmarkLoader.cs (2)
Learnt from: Jack251970
PR: Flow-Launcher/Flow.Launcher#3664
File: Plugins/Flow.Launcher.Plugin.BrowserBookmark/FirefoxBookmarkLoader.cs:326-326
Timestamp: 2025-06-06T05:26:32.163Z
Learning: In the Firefox bookmark loader (FirefoxBookmarkLoader.cs), using hardcoded Windows line endings ("\r\n") for splitting profiles.ini content is acceptable and platform-agnostic line splitting is not required.
Learnt from: Jack251970
PR: Flow-Launcher/Flow.Launcher#3791
File: Flow.Launcher.Core/Plugin/PluginManager.cs:293-295
Timestamp: 2025-07-01T05:46:13.251Z
Learning: In Flow.Launcher.Core/Plugin/PluginManager.cs, when checking if a plugin is modified within the PluginManager class itself, prefer using the internal static PluginModified(string id) method directly rather than going through API.PluginModified() for better performance and architectural design.
Plugins/Flow.Launcher.Plugin.BrowserBookmark/Helper/FaviconHelper.cs (4)
Learnt from: Jack251970
PR: Flow-Launcher/Flow.Launcher#3572
File: Flow.Launcher/App.xaml.cs:214-216
Timestamp: 2025-07-06T12:21:37.947Z
Learning: In Flow Launcher, the UpdatePluginManifestAsync method in PluginsManifest.cs already has comprehensive internal try-catch handling that logs exceptions and returns false on failure rather than throwing, making external try-catch wrappers unnecessary.
Learnt from: Jack251970
PR: Flow-Launcher/Flow.Launcher#3791
File: Flow.Launcher.Core/Plugin/PluginManager.cs:293-295
Timestamp: 2025-07-01T05:46:13.251Z
Learning: In Flow.Launcher.Core/Plugin/PluginManager.cs, when checking if a plugin is modified within the PluginManager class itself, prefer using the internal static PluginModified(string id) method directly rather than going through API.PluginModified() for better performance and architectural design.
Learnt from: Jack251970
PR: Flow-Launcher/Flow.Launcher#3664
File: Plugins/Flow.Launcher.Plugin.BrowserBookmark/FirefoxBookmarkLoader.cs:326-326
Timestamp: 2025-06-06T05:26:32.163Z
Learning: In the Firefox bookmark loader (FirefoxBookmarkLoader.cs), using hardcoded Windows line endings ("\r\n") for splitting profiles.ini content is acceptable and platform-agnostic line splitting is not required.
Learnt from: Yusyuriv
PR: Flow-Launcher/Flow.Launcher#3057
File: Flow.Launcher.Core/Plugin/JsonRPCPluginSettings.cs:0-0
Timestamp: 2024-11-03T07:40:11.014Z
Learning: In Flow Launcher, when using Windows Forms dialogs (e.g., in `JsonRPCPluginSettings.cs`), path validation is enabled by default in `OpenFileDialog` and `FolderBrowserDialog`, preventing users from selecting invalid paths, but it's possible to opt out of this validation on individual dialogs.
🧬 Code Graph Analysis (1)
Plugins/Flow.Launcher.Plugin.BrowserBookmark/FirefoxBookmarkLoader.cs (1)
Plugins/Flow.Launcher.Plugin.BrowserBookmark/Helper/FaviconHelper.cs (3)
  • FaviconHelper (8-124)
  • TryConvertToWebp (70-123)
  • SaveBitmapData (58-68)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (2)
  • GitHub Check: gitStream.cm
  • GitHub Check: gitStream.cm
🔇 Additional comments (2)
Plugins/Flow.Launcher.Plugin.BrowserBookmark/Flow.Launcher.Plugin.BrowserBookmark.csproj (1)

100-101: LGTM! Package dependencies align with PR objectives.

The addition of Svg.Skia and SkiaSharp packages is appropriate for implementing the WebP conversion functionality to fix the CPU usage issue.

Plugins/Flow.Launcher.Plugin.BrowserBookmark/FirefoxBookmarkLoader.cs (1)

166-187: Excellent implementation of gzip decompression and WebP conversion.

The code properly detects gzip-compressed data using magic bytes and handles decompression correctly. The WebP conversion integration with unique file naming prevents collisions and the ConcurrentDictionary ensures thread-safe duplicate prevention.

@taooceros
Copy link
Member

taooceros commented Jul 15, 2025

Do you mind explain what's going on with the CPU locking? Is it because of the SVG loading? If that's the case, shall we encode all svg image before displaying it? IIRC flow currently use a separate svg control to display svg image.

Nevermind I saw the previous PR.

@dcog989
Copy link
Contributor Author

dcog989 commented Jul 17, 2025

@taooceros - yes, something to do with SVG loading - not sure if it was GZIPped or malformed SVGs causing it. Basically, Firefox stores favicons as the website supplies them, whereas Chrome/ium converts to bitmap so we can rely on it. So, for each bad SVG a thread would get locked up trying to understand it.

Are we waiting for review on this PR?

I will rework the original PR once FL2.0 drops. It turned in to a total refactor and caused some head scratching which I want to work through. As I said on the original PR, this will solve / improve many things over the original plugin - e.g. intelligent refresh of the bookmarks / icons which won't rely on restarting the app.

Copy link

gitstream-cm bot commented Jul 27, 2025

🥷 Code experts: Jack251970

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

See details

Plugins/Flow.Launcher.Plugin.BrowserBookmark/FirefoxBookmarkLoader.cs

Activity based on git-commit:

Jack251970 onesounds
JUL
JUN 263 additions & 203 deletions
MAY
APR 55 additions & 60 deletions
MAR 32 additions & 12 deletions 407 additions & 261 deletions
FEB

Knowledge based on git-blame:
Jack251970: 58%
jjw24: 4%

Plugins/Flow.Launcher.Plugin.BrowserBookmark/Flow.Launcher.Plugin.BrowserBookmark.csproj

Activity based on git-commit:

Jack251970 onesounds
JUL 1 additions & 1 deletions
JUN 36 additions & 35 deletions
MAY
APR 2 additions & 2 deletions
MAR 35 additions & 35 deletions 6 additions & 3 deletions
FEB

Knowledge based on git-blame:
jjw24: 36%
Jack251970: 34%

Plugins/Flow.Launcher.Plugin.BrowserBookmark/Helper/FaviconHelper.cs

Activity based on git-commit:

Jack251970 onesounds
JUL
JUN 81 additions & 5 deletions
MAY
APR
MAR
FEB

Knowledge based on git-blame:
Jack251970: 100%

✨ Comment /gs review for LinearB AI review. Learn how to automate it here.

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: 0

🧹 Nitpick comments (1)
Plugins/Flow.Launcher.Plugin.BrowserBookmark/Helper/FaviconHelper.cs (1)

77-94: Consider improving exception handling and adding dimension validation.

The SVG processing logic is correct, but there are opportunities for improvement:

  1. The empty catch block could hide useful debugging information for malformed SVGs
  2. No validation for SVG dimensions that could be zero or negative

Consider this improvement:

 try
 {
     using (var ms = new MemoryStream(data))
     {
         var svg = new SKSvg();
         if (svg.Load(ms) != null && svg.Picture != null)
         {
-            bitmap = new SKBitmap((int)svg.Picture.CullRect.Width, (int)svg.Picture.CullRect.Height);
+            var width = Math.Max(1, (int)svg.Picture.CullRect.Width);
+            var height = Math.Max(1, (int)svg.Picture.CullRect.Height);
+            bitmap = new SKBitmap(width, height);
             using (var canvas = new SKCanvas(bitmap))
             {
                 canvas.Clear(SKColors.Transparent);
                 canvas.DrawPicture(svg.Picture);
                 canvas.Flush();
             }
         }
     }
 }
-catch { /* Not an SVG */ }
+catch (Exception ex)
+{
+    // Log SVG processing failures for debugging, but continue with bitmap fallback
+    Main.Context.API.LogDebug(ClassName, $"SVG processing failed: {ex.Message}");
+}
📜 Review details

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

📥 Commits

Reviewing files that changed from the base of the PR and between d57eca2 and 7084d5a.

📒 Files selected for processing (3)
  • Plugins/Flow.Launcher.Plugin.BrowserBookmark/FirefoxBookmarkLoader.cs (2 hunks)
  • Plugins/Flow.Launcher.Plugin.BrowserBookmark/Flow.Launcher.Plugin.BrowserBookmark.csproj (1 hunks)
  • Plugins/Flow.Launcher.Plugin.BrowserBookmark/Helper/FaviconHelper.cs (2 hunks)
🚧 Files skipped from review as they are similar to previous changes (2)
  • Plugins/Flow.Launcher.Plugin.BrowserBookmark/Flow.Launcher.Plugin.BrowserBookmark.csproj
  • Plugins/Flow.Launcher.Plugin.BrowserBookmark/FirefoxBookmarkLoader.cs
🧰 Additional context used
🧠 Learnings (1)
Plugins/Flow.Launcher.Plugin.BrowserBookmark/Helper/FaviconHelper.cs (5)

Learnt from: Jack251970
PR: #3572
File: Flow.Launcher/App.xaml.cs:214-216
Timestamp: 2025-07-06T12:21:37.947Z
Learning: In Flow Launcher, the UpdatePluginManifestAsync method in PluginsManifest.cs already has comprehensive internal try-catch handling that logs exceptions and returns false on failure rather than throwing, making external try-catch wrappers unnecessary.

Learnt from: Jack251970
PR: #3791
File: Flow.Launcher.Core/Plugin/PluginManager.cs:293-295
Timestamp: 2025-07-01T05:46:13.251Z
Learning: In Flow.Launcher.Core/Plugin/PluginManager.cs, when checking if a plugin is modified within the PluginManager class itself, prefer using the internal static PluginModified(string id) method directly rather than going through API.PluginModified() for better performance and architectural design.

Learnt from: Jack251970
PR: #3854
File: Flow.Launcher/App.xaml.cs:246-262
Timestamp: 2025-07-21T09:19:49.684Z
Learning: In Flow Launcher's App.xaml.cs, the asynchronous plugin initialization task (containing AbstractPluginEnvironment.PreStartPluginExecutablePathUpdate, PluginManager.LoadPlugins, PluginManager.InitializePluginsAsync, and AutoPluginUpdates) does not require additional try-catch error handling according to maintainer Jack251970, as these operations are designed to handle exceptions internally.

Learnt from: Jack251970
PR: #3664
File: Plugins/Flow.Launcher.Plugin.BrowserBookmark/FirefoxBookmarkLoader.cs:326-326
Timestamp: 2025-06-06T05:26:32.163Z
Learning: In the Firefox bookmark loader (FirefoxBookmarkLoader.cs), using hardcoded Windows line endings ("\r\n") for splitting profiles.ini content is acceptable and platform-agnostic line splitting is not required.

Learnt from: Yusyuriv
PR: #3057
File: Flow.Launcher.Core/Plugin/JsonRPCPluginSettings.cs:0-0
Timestamp: 2024-11-03T07:40:11.014Z
Learning: In Flow Launcher, when using Windows Forms dialogs (e.g., in JsonRPCPluginSettings.cs), path validation is enabled by default in OpenFileDialog and FolderBrowserDialog, preventing users from selecting invalid paths, but it's possible to opt out of this validation on individual dialogs.

🪛 GitHub Check: Check Spelling
Plugins/Flow.Launcher.Plugin.BrowserBookmark/Helper/FaviconHelper.cs

[warning] 3-3:
Skia is not a recognized word. (unrecognized-spelling)

🔇 Additional comments (4)
Plugins/Flow.Launcher.Plugin.BrowserBookmark/Helper/FaviconHelper.cs (4)

3-4: LGTM! Necessary imports for WebP conversion functionality.

The new SkiaSharp and Svg.Skia imports are required for the WebP conversion logic and SVG processing capabilities.


72-73: LGTM! Proper null and empty data validation.

The early return for null or empty data prevents unnecessary processing and potential exceptions.


96-123: LGTM! Robust fallback and encoding logic addresses the CPU issue.

The implementation effectively handles the core problem:

  1. Bitmap fallback: Properly handles non-SVG images using SkiaSharp's universal decoder
  2. WebP encoding: Quality setting of 65 provides good balance between size and quality
  3. Resource management: Proper disposal in finally block prevents memory leaks
  4. Graceful failure: Returns null instead of throwing exceptions

This approach should resolve the 100% CPU issue by converting problematic SVG data to safe WebP format before UI consumption.


70-123: Excellent solution for the CPU locking issue.

This implementation effectively addresses the core problem described in the PR objectives:

Problem solved: Malformed or GZIP-compressed SVGs from Firefox favicons were causing threads to lock at 100% CPU usage.

Solution benefits:

  • Safe conversion: All favicon data is converted to WebP format before UI consumption
  • Robust handling: Gracefully processes both SVG and bitmap data with appropriate fallbacks
  • Performance: WebP format reduces memory usage and eliminates SVG parsing overhead in the UI
  • Stability: Exception handling prevents crashes while maintaining functionality

This approach aligns perfectly with the interim fix strategy mentioned in the PR discussion, providing immediate stability improvements before the planned 2.0 refactor.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
10 min review bug Something isn't working enhancement New feature or request
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Latest version random high loads
3 participants