In my canvas app, I get this error:
AzureBlobStorage.GetFileContent failed. The method 'GetFileContent' has an invalid value for parameter 'id'
Despite the error, the app succeeds in displaying the picture!
This does not show up while designing and testing the app in PowerApps studio. Only when the App is actually run do I see this error.
Here is the offending code:
IfError(
ClearCollect(
blobs,
CollectAzureBlobStorageRecordForStCode.Run(glCurrentStCode)
),
""
);
Set(
BlobRowCount,
CountRows(blobs)
);
Clear(blobCollection);
ForAll(
blobs,
Collect(
blobCollection,
{
RowIndex: CountRows(blobCollection) + 1,
Comment: blobs[@Comment],
BlobStorageID: blobs[@BlobStorageId],
FK_LinkID: blobs[@FK_LinkID],
Timestamp: blobs[@Timestamp]
}
)
);
and
If(!IsEmpty(ThisItem.BlobStorageID),AzureBlobStorage.GetFileContent(ThisItem.BlobStorageID))
In all cases the id parameters are valid!! How do I remove this unwanted error message?