mirror of
				https://github.com/dani-garcia/vaultwarden.git
				synced 2025-10-31 02:08:20 +02:00 
			
		
		
		
	Remove lowercase conversion for featureStates (#4820)
- needed to match Bitwarden, some of the feature flags might have uppercase characters (for example: ```PM-4154-bulk-encryption-service```)
This commit is contained in:
		| @@ -730,8 +730,7 @@ pub fn convert_json_key_lcase_first(src_json: Value) -> Value { | ||||
|  | ||||
| /// Parses the experimental client feature flags string into a HashMap. | ||||
| pub fn parse_experimental_client_feature_flags(experimental_client_feature_flags: &str) -> HashMap<String, bool> { | ||||
|     let feature_states = | ||||
|         experimental_client_feature_flags.to_lowercase().split(',').map(|f| (f.trim().to_owned(), true)).collect(); | ||||
|     let feature_states = experimental_client_feature_flags.split(',').map(|f| (f.trim().to_owned(), true)).collect(); | ||||
|  | ||||
|     feature_states | ||||
| } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user