mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 05:53:43 +00:00 
			
		
		
		
	js: Normalize strings to double quotes.
Prettier would do this anyway, but it’s separated out for a more reviewable diff. Generated by ESLint. Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
		
				
					committed by
					
						
						Tim Abbott
					
				
			
			
				
	
			
			
			
						parent
						
							06691e1e45
						
					
				
				
					commit
					f3726db89a
				
			@@ -1,4 +1,4 @@
 | 
			
		||||
const FoldDict = require('./fold_dict').FoldDict;
 | 
			
		||||
const FoldDict = require("./fold_dict").FoldDict;
 | 
			
		||||
 | 
			
		||||
let user_group_name_dict;
 | 
			
		||||
let user_group_by_id_dict;
 | 
			
		||||
@@ -28,7 +28,7 @@ exports.remove = function (user_group) {
 | 
			
		||||
exports.get_user_group_from_id = function (group_id, suppress_errors) {
 | 
			
		||||
    if (!user_group_by_id_dict.has(group_id)) {
 | 
			
		||||
        if (suppress_errors === undefined) {
 | 
			
		||||
            blueslip.error('Unknown group_id in get_user_group_from_id: ' + group_id);
 | 
			
		||||
            blueslip.error("Unknown group_id in get_user_group_from_id: " + group_id);
 | 
			
		||||
        }
 | 
			
		||||
        return;
 | 
			
		||||
    }
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user