Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions libs/linglong/src/linglong/package/uab_packager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -402,9 +402,9 @@ utils::error::Result<void> UABPackager::prepareBundle(const QDir &bundleDir, boo
}

const auto &info = *infoRet;
// the kind of old org.deepin.base and org.deepin.foundation is runtime
// the kind of old org.deepin.base,org.deepin.foundation and com.uniontech.foundation is runtime
if (info.kind == "base" || info.id == "org.deepin.base"
|| info.id == "org.deepin.foundation") {
|| info.id == "org.deepin.foundation" || info.id == "com.uniontech.foundation") {
base = *it;
it = this->layers.erase(it);
continue;
Expand Down