зеркало из https://github.com/nextcloud/desktop.git
Add check if applist rowCount() already empty to prevent assert exception
Signed-off-by: Dominique Fuchs <32204802+DominiqueFuchs@users.noreply.github.com>
This commit is contained in:
Родитель
d7a9940973
Коммит
9f259bda27
|
@ -779,9 +779,11 @@ UserAppsModel::UserAppsModel(QObject *parent)
|
|||
|
||||
void UserAppsModel::buildAppList()
|
||||
{
|
||||
beginRemoveRows(QModelIndex(), 0, rowCount());
|
||||
_apps.clear();
|
||||
endRemoveRows();
|
||||
if (rowCount() > 0) {
|
||||
beginRemoveRows(QModelIndex(), 0, rowCount() - 1);
|
||||
_apps.clear();
|
||||
endRemoveRows();
|
||||
}
|
||||
|
||||
if(UserModel::instance()->appList().count() > 0) {
|
||||
foreach(AccountApp *app, UserModel::instance()->appList()) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче