mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 11:00:48 +03:00
Fix shadowing
This commit is contained in:
parent
95bbc559fa
commit
21562eed75
1 changed files with 10 additions and 7 deletions
|
@ -128,10 +128,11 @@ MxcImageProvider::download(const QString &id,
|
|||
f.open(QIODevice::ReadOnly);
|
||||
|
||||
QByteArray fileData = f.readAll();
|
||||
auto temp =
|
||||
auto tempData =
|
||||
mtx::crypto::to_string(mtx::crypto::decrypt_file(
|
||||
fileData.toStdString(), encryptionInfo.value()));
|
||||
auto data = QByteArray(temp.data(), (int)temp.size());
|
||||
auto data =
|
||||
QByteArray(tempData.data(), (int)tempData.size());
|
||||
QImage image = utils::readImage(data);
|
||||
image.setText("mxc url", "mxc://" + id);
|
||||
if (!image.isNull()) {
|
||||
|
@ -165,19 +166,21 @@ MxcImageProvider::download(const QString &id,
|
|||
return;
|
||||
}
|
||||
|
||||
auto temp = res;
|
||||
auto tempData = res;
|
||||
QFile f(fileInfo.absoluteFilePath());
|
||||
if (!f.open(QIODevice::Truncate | QIODevice::WriteOnly)) {
|
||||
then(id, QSize(), {}, "");
|
||||
return;
|
||||
}
|
||||
f.write(temp.data(), temp.size());
|
||||
f.write(tempData.data(), tempData.size());
|
||||
f.close();
|
||||
|
||||
if (encryptionInfo) {
|
||||
temp = mtx::crypto::to_string(mtx::crypto::decrypt_file(
|
||||
temp, encryptionInfo.value()));
|
||||
auto data = QByteArray(temp.data(), (int)temp.size());
|
||||
tempData =
|
||||
mtx::crypto::to_string(mtx::crypto::decrypt_file(
|
||||
tempData, encryptionInfo.value()));
|
||||
auto data =
|
||||
QByteArray(tempData.data(), (int)tempData.size());
|
||||
QImage image = utils::readImage(data);
|
||||
image.setText("original filename",
|
||||
QString::fromStdString(originalFilename));
|
||||
|
|
Loading…
Reference in a new issue