Windows crash fix (#175)
* Fixing crash on UWP app Adding try catch block for numberOfCopies property * adding copies property in nubmerOfCopies
This commit is contained in:
parent
c19cec7415
commit
9a6b4e8dbb
@ -114,7 +114,11 @@ exports.onPrintTaskRequested = function (event) {
|
|||||||
task.options.duplex = Printing.PrintDuplex.oneSided;
|
task.options.duplex = Printing.PrintDuplex.oneSided;
|
||||||
}
|
}
|
||||||
|
|
||||||
task.options.numberOfCopies = config.copies || 1;
|
// handling exception to prevent app to crash
|
||||||
|
try {
|
||||||
|
task.options.numberOfCopies = config.copies || 1;
|
||||||
|
} catch (e) {
|
||||||
|
}
|
||||||
|
|
||||||
task.oncompleted = function (e) {
|
task.oncompleted = function (e) {
|
||||||
exports._func(e.detail[0].completion == 3);
|
exports._func(e.detail[0].completion == 3);
|
||||||
|
Loading…
Reference in New Issue
Block a user