tell stupid ai not to meddle with the paths on other platforms by adding a copy

This commit is contained in:
Ryan Huber
2025-10-31 14:16:02 -04:00
parent 68746bd907
commit 29157f413c
5 changed files with 21 additions and 13 deletions

View File

@@ -344,6 +344,9 @@ func NewInterface(ctx context.Context, c *InterfaceConfig) (*Interface, error) {
if decryptWorkers < 0 {
decryptWorkers = 0
}
if runtime.GOOS != "linux" {
decryptWorkers = 0
}
queueDepth := c.DecryptQueueDepth
if queueDepth <= 0 {