pdfprocessor: don't throw exception on encrypted files (locked ones are
the problem)
This commit is contained in:
والد
ccb6818e72
کامیت
6bb53b8c31
@ -13,9 +13,9 @@ QVector<PageData> PdfProcessor::process(const QByteArray &data) const
|
||||
{
|
||||
throw QSSGeneralException("Failed to process pdf data");
|
||||
}
|
||||
if(doc->isEncrypted() || doc->isLocked())
|
||||
if(doc->isLocked())
|
||||
{
|
||||
throw QSSGeneralException("Doc is encrypted/locked");
|
||||
throw QSSGeneralException("Doc is locked");
|
||||
}
|
||||
|
||||
QRectF entirePage;
|
||||
|
بارگذاری…
مرجع در شماره جدید
Block a user