Swift Package error in AsposeWordsCloud

There is an error in your Swift Package. My app won’t compile. Error in class ApiInvoker, line 98, “Errors thrown from here are not handled”

  requestFileReference.encryptPassword(try encryptString(value: requestFileReference.password!));

Looks like there’s a “try” without a “catch”.

AsposeWordsCloud v24.3.0

    public func prepareFilesContent(_ requestFilesContent : inout [FileReference]) {
#if os(Linux)
        // Encryption of passwords not supported on linux
#else
        for requestFileReference in requestFilesContent {
            if (requestFileReference.password != nil) {
                requestFileReference.encryptPassword(try encryptString(value: requestFileReference.password!));
            }
        }
#endif
    }

@cassfinn2,

We are sorry for the inconvenience. We have logged a ticket(WORDSCLOUD-2662) to investigate the issue. We will keep you updated about the issue resolution progress in this thread.

The issues you have found earlier (filed as WORDSCLOUD-2662) have been fixed in this update. This message was posted using Bugs notification tool by Ivanov_John