mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-11-04 15:34:13 +00:00 
			
		
		
		
	Remove unnecessary checking
This commit is contained in:
		
							parent
							
								
									612e3aafbc
								
							
						
					
					
						commit
						f19ac5320e
					
				
					 1 changed files with 0 additions and 9 deletions
				
			
		| 
						 | 
				
			
			@ -10,7 +10,6 @@ import { getOriginalUrl } from '../../../misc/get-drive-file-url';
 | 
			
		|||
import parseAcct from '../../../misc/acct/parse';
 | 
			
		||||
import resolveUser from '../../../remote/resolve-user';
 | 
			
		||||
import { downloadTextFile } from '../../../misc/download-text-file';
 | 
			
		||||
import Following from '../../../models/following';
 | 
			
		||||
 | 
			
		||||
const logger = queueLogger.createSubLogger('import-following');
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -46,14 +45,6 @@ export async function importFollowing(job: Bull.Job, done: any): Promise<void> {
 | 
			
		|||
			target = await resolveUser(username, host);
 | 
			
		||||
		}
 | 
			
		||||
 | 
			
		||||
		// Check if already following
 | 
			
		||||
		const exist = await Following.findOne({
 | 
			
		||||
			followerId: user._id,
 | 
			
		||||
			followeeId: target._id
 | 
			
		||||
		});
 | 
			
		||||
 | 
			
		||||
		if (exist) continue;
 | 
			
		||||
 | 
			
		||||
		follow(user, target);
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue