Skip to content
This repository has been archived by the owner on Oct 17, 2019. It is now read-only.

Commit

Permalink
Fix CI builds
Browse files Browse the repository at this point in the history
  • Loading branch information
mujx committed Mar 13, 2018
1 parent 4659d0e commit 1b5e18c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ build:
verbosity: minimal

install:
- set QT_DIR=C:\Qt\5.10.0\msvc2015_64
- set QT_DIR=C:\Qt\5.10.1\msvc2015_64
- set PATH=%PATH%;%QT_DIR%\bin;C:\MinGW\bin

build_script:
Expand Down Expand Up @@ -45,7 +45,7 @@ after_build:
- echo %BUILD%
- mkdir NhekoRelease
- copy build\Release\nheko.exe NhekoRelease\nheko.exe
- windeployqt --qmldir C:\Qt\5.10.0\msvc2015_64\qml\ --release NhekoRelease\nheko.exe
- windeployqt --qmldir C:\Qt\5.10.1\msvc2015_64\qml\ --release NhekoRelease\nheko.exe
- copy C:\OpenSSL-Win64\bin\ssleay32.dll .\NhekoRelease\ssleay32.dll
- copy C:\OpenSSL-Win64\bin\libeay32.dll .\NhekoRelease\libeay32.dll
- copy C:\OpenSSL-Win64\lib\libeay32.lib .\NhekoRelease\libeay32.lib
Expand Down
2 changes: 1 addition & 1 deletion src/dialogs/ReCaptcha.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ ReCaptcha::ReCaptcha(const QString &server, const QString &session, QWidget *par
layout->addWidget(label);
layout->addLayout(buttonLayout);

connect(openCaptchaBtn_, &QPushButton::clicked, [server, session, this]() {
connect(openCaptchaBtn_, &QPushButton::clicked, [server, session]() {
const auto url =
QString(
"https://%1/_matrix/client/r0/auth/m.login.recaptcha/fallback/web?session=%2")
Expand Down

0 comments on commit 1b5e18c

Please sign in to comment.