mirror of
https://github.com/wekan/wekan.git
synced 2026-02-26 01:44:07 +01:00
Reverted New UI Design of WeKan v8.29 and added more fixes and performance improvements.
Thanks to xet7 !
This commit is contained in:
parent
d152d8fc1b
commit
1b8b8d2eef
196 changed files with 17659 additions and 10028 deletions
|
|
@ -2,10 +2,10 @@ import { Meteor } from 'meteor/meteor';
|
|||
|
||||
/**
|
||||
* MongoDB Driver Manager
|
||||
*
|
||||
*
|
||||
* This module provides automatic MongoDB version detection and driver selection
|
||||
* to support MongoDB versions 3.0 through 8.0 with compatible Node.js drivers.
|
||||
*
|
||||
*
|
||||
* Features:
|
||||
* - Automatic MongoDB version detection from wire protocol errors
|
||||
* - Dynamic driver selection based on detected version
|
||||
|
|
@ -113,7 +113,7 @@ class MongoDBDriverManager {
|
|||
}
|
||||
|
||||
const errorMessage = error.message.toLowerCase();
|
||||
|
||||
|
||||
// Check specific version patterns
|
||||
for (const [version, patterns] of Object.entries(VERSION_ERROR_PATTERNS)) {
|
||||
for (const pattern of patterns) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue