Fix old name in settings and others

This commit is contained in:
pluja 2020-09-04 23:55:56 +02:00
parent f854f212c6
commit bea7cd3896
3 changed files with 5 additions and 5 deletions

View File

@ -9,12 +9,12 @@ followers = db.Table('followers',
) )
channel_association = db.Table('channel_association', channel_association = db.Table('channel_association',
db.Column('channel_id', db.String, db.ForeignKey('channel.id')), db.Column('channel_id', db.String(30), db.ForeignKey('channel.id')),
db.Column('user_id', db.Integer, db.ForeignKey('user.id')) db.Column('user_id', db.Integer, db.ForeignKey('user.id'))
) # Association: CHANNEL --followed by--> [USERS] ) # Association: CHANNEL --followed by--> [USERS]
twitter_association = db.Table('twitter_association', twitter_association = db.Table('twitter_association',
db.Column('account_id', db.String, db.ForeignKey('twitterAccount.id')), db.Column('account_id', db.String(30), db.ForeignKey('twitterAccount.id')),
db.Column('user_id', db.Integer, db.ForeignKey('user.id')) db.Column('user_id', db.Integer, db.ForeignKey('user.id'))
) # Association: ACCOUNT --followed by--> [USERS] ) # Association: ACCOUNT --followed by--> [USERS]

View File

@ -20,7 +20,7 @@
<div class="header"> <div class="header">
Imports can take up to 2 minutes. Imports can take up to 2 minutes.
</div> </div>
<p>But you can still use Parasitter.</p> <p>But you can still use Yotter.</p>
</div> </div>
</div> </div>
</div> </div>

View File

@ -1,4 +1,4 @@
{ {
"nitterInstance": "https://nitter.net/", "nitterInstance": "https://nitter.net/",
"maxInstanceUsers": 1 "maxInstanceUsers": 10
} }