Fixes copy server profile url.

Copy url as a string instead of the url type.
This commit is contained in:
Qiu Yuzhou
2018-09-27 15:08:05 +08:00
parent 39d694048d
commit bbefbadb67

View File

@ -48,7 +48,7 @@ class ShareServerProfilesWindowController: NSWindowController
if profile.isValid(), let url = profile.URL() {
let pb = NSPasteboard.general
pb.clearContents()
if pb.writeObjects([url as NSPasteboardWriting]) {
if pb.writeObjects([url.absoluteString as NSPasteboardWriting]) {
NSLog("Copy URL to clipboard")
} else {
NSLog("Failed to copy URL to clipboard")