mirror of
				https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
				synced 2025-11-03 20:02:47 +00:00 
			
		
		
		
	another small fix
This commit is contained in:
		@@ -777,8 +777,7 @@ class User(HashidMixin, UserMixin, db.Model):
 | 
			
		||||
    def follow_corpus(self, corpus, role=None):
 | 
			
		||||
        if self.is_following_corpus(corpus):
 | 
			
		||||
            return
 | 
			
		||||
        if role is None:
 | 
			
		||||
            r = CorpusFollowerRole.query.filter_by(default=True).first()
 | 
			
		||||
        r = CorpusFollowerRole.query.filter_by(default=True).first() if role is None else role
 | 
			
		||||
        cfa = CorpusFollowerAssociation(corpus=corpus, role=r, follower=self)
 | 
			
		||||
        db.session.add(cfa)
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user