File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -11,8 +11,8 @@ let package = Package(
1111 . target( name: " ProseCoreFFI " , dependencies: [ " ProseCoreFFIFFI " ] ) ,
1212 . binaryTarget(
1313 name: " ProseCoreFFIFFI " ,
14- url: " https://github.com/prose-im/prose-wrapper-swift/releases/download/0.11 .0/ProseCoreFFI.xcframework.zip " ,
15- checksum: " 3513e483989b655f2303290699188f4ed11694348ac9ffb6ca0916422b779bc3 "
14+ url: " https://github.com/prose-im/prose-wrapper-swift/releases/download/0.12 .0/ProseCoreFFI.xcframework.zip " ,
15+ checksum: " dcd4d1c4ef69fd19048d9e83162cc28de58b142211fa4418f21bcc62ea2510a5 "
1616 ) ,
1717 ]
1818)
Original file line number Diff line number Diff line change @@ -3732,7 +3732,7 @@ public struct FfiConverterTypeUrl: FfiConverter {
37323732 }
37333733
37343734 public static func write( _ value: Url , into buf: inout [ UInt8 ] ) {
3735- let builtinValue = value. path
3735+ let builtinValue = value. absoluteString
37363736 return FfiConverterString . write ( builtinValue, into: & buf)
37373737 }
37383738
@@ -3742,7 +3742,7 @@ public struct FfiConverterTypeUrl: FfiConverter {
37423742 }
37433743
37443744 public static func lower( _ value: Url ) -> RustBuffer {
3745- let builtinValue = value. path
3745+ let builtinValue = value. absoluteString
37463746 return FfiConverterString . lower ( builtinValue)
37473747 }
37483748}
You can’t perform that action at this time.
0 commit comments