mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-02-07 15:08:24 +00:00
Fix checksum test for H264.
This commit is contained in:
parent
501c053b4d
commit
c189747941
2 changed files with 3 additions and 2 deletions
|
|
@ -158,7 +158,7 @@ void AbstractCodecsModel::addDownloadableCodec (
|
|||
const QString &encoderDescription,
|
||||
const QString &downloadUrl,
|
||||
const QString &installName,
|
||||
const QString &chekcksum
|
||||
const QString &checksum
|
||||
) {
|
||||
QVariantMap map;
|
||||
|
||||
|
|
@ -166,7 +166,7 @@ void AbstractCodecsModel::addDownloadableCodec (
|
|||
map["encoderDescription"] = encoderDescription;
|
||||
map["installName"] = installName;
|
||||
map["mime"] = mime;
|
||||
map["checksum"] = chekcksum;
|
||||
map["checksum"] = checksum;
|
||||
|
||||
mList << map;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -15,6 +15,7 @@ DialogPlus {
|
|||
|
||||
property alias downloadUrl: fileDownloader.url
|
||||
property alias installFolder: fileDownloader.downloadFolder
|
||||
property alias checksum: fileDownloader.checksum
|
||||
property string installName // Right install name.
|
||||
property string mime // Human readable name.
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue