Fix old name in settings and others
This commit is contained in:
parent
f854f212c6
commit
bea7cd3896
@ -9,12 +9,12 @@ followers = db.Table('followers',
|
||||
)
|
||||
|
||||
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'))
|
||||
) # Association: CHANNEL --followed by--> [USERS]
|
||||
|
||||
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'))
|
||||
) # Association: ACCOUNT --followed by--> [USERS]
|
||||
|
||||
|
@ -20,7 +20,7 @@
|
||||
<div class="header">
|
||||
Imports can take up to 2 minutes.
|
||||
</div>
|
||||
<p>But you can still use Parasitter.</p>
|
||||
<p>But you can still use Yotter.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -1,4 +1,4 @@
|
||||
{
|
||||
"nitterInstance": "https://nitter.net/",
|
||||
"maxInstanceUsers": 1
|
||||
}
|
||||
"maxInstanceUsers": 10
|
||||
}
|
||||
|
Reference in New Issue
Block a user