Skip to content

Commit

Permalink
3.3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
c0re100 committed Apr 15, 2017
1 parent c4a701d commit e142104
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/webui/abstractwebapplication.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -89,11 +89,11 @@ AbstractWebApplication::AbstractWebApplication(QObject *parent)
, session_(0)
{
QTimer *timer = new QTimer(this);
connect(timer, SIGNAL(timeout()), SLOT(removeInactiveSessions()));
timer->start(60 * 1000); // 1 min.
m_UnbanTimer = new QTimer(this);
m_UnbanTimer->setInterval(500);
connect(timer, SIGNAL(timeout()), SLOT(removeInactiveSessions()));
connect(m_UnbanTimer, SIGNAL(timeout()), SLOT(processUnbanRequest()));
timer->start(60 * 1000); // 1 min.
}

AbstractWebApplication::~AbstractWebApplication()
Expand Down

0 comments on commit e142104

Please sign in to comment.