mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2024-12-22 23:58:36 +01:00
Fix iOS build errors.
This commit is contained in:
parent
797d7ef2e0
commit
b3464a2aa5
@ -600,6 +600,7 @@
|
|||||||
841CECD82BAD04B20001EE72 /* Tree in Frameworks */ = {isa = PBXBuildFile; productRef = 841CECD72BAD04B20001EE72 /* Tree */; };
|
841CECD82BAD04B20001EE72 /* Tree in Frameworks */ = {isa = PBXBuildFile; productRef = 841CECD72BAD04B20001EE72 /* Tree */; };
|
||||||
841CECDA2BAD04B80001EE72 /* Tree in Frameworks */ = {isa = PBXBuildFile; productRef = 841CECD92BAD04B80001EE72 /* Tree */; };
|
841CECDA2BAD04B80001EE72 /* Tree in Frameworks */ = {isa = PBXBuildFile; productRef = 841CECD92BAD04B80001EE72 /* Tree */; };
|
||||||
841CECDC2BAD04BF0001EE72 /* Tree in Frameworks */ = {isa = PBXBuildFile; productRef = 841CECDB2BAD04BF0001EE72 /* Tree */; };
|
841CECDC2BAD04BF0001EE72 /* Tree in Frameworks */ = {isa = PBXBuildFile; productRef = 841CECDB2BAD04BF0001EE72 /* Tree */; };
|
||||||
|
841CECDE2BAD06D10001EE72 /* Tree in Frameworks */ = {isa = PBXBuildFile; productRef = 841CECDD2BAD06D10001EE72 /* Tree */; };
|
||||||
84216D0322128B9D0049B9B9 /* DetailWebViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 84216D0222128B9D0049B9B9 /* DetailWebViewController.swift */; };
|
84216D0322128B9D0049B9B9 /* DetailWebViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 84216D0222128B9D0049B9B9 /* DetailWebViewController.swift */; };
|
||||||
8426118A1FCB67AA0086A189 /* FeedIconDownloader.swift in Sources */ = {isa = PBXBuildFile; fileRef = 842611891FCB67AA0086A189 /* FeedIconDownloader.swift */; };
|
8426118A1FCB67AA0086A189 /* FeedIconDownloader.swift in Sources */ = {isa = PBXBuildFile; fileRef = 842611891FCB67AA0086A189 /* FeedIconDownloader.swift */; };
|
||||||
8426119E1FCB6ED40086A189 /* HTMLMetadataDownloader.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8426119D1FCB6ED40086A189 /* HTMLMetadataDownloader.swift */; };
|
8426119E1FCB6ED40086A189 /* HTMLMetadataDownloader.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8426119D1FCB6ED40086A189 /* HTMLMetadataDownloader.swift */; };
|
||||||
@ -1531,6 +1532,7 @@
|
|||||||
isa = PBXFrameworksBuildPhase;
|
isa = PBXFrameworksBuildPhase;
|
||||||
buildActionMask = 2147483647;
|
buildActionMask = 2147483647;
|
||||||
files = (
|
files = (
|
||||||
|
841CECDE2BAD06D10001EE72 /* Tree in Frameworks */,
|
||||||
51BC2F3824D3439A00E90810 /* Account in Frameworks */,
|
51BC2F3824D3439A00E90810 /* Account in Frameworks */,
|
||||||
84D9582C2BABE53B0053E7B2 /* FoundationExtras in Frameworks */,
|
84D9582C2BABE53B0053E7B2 /* FoundationExtras in Frameworks */,
|
||||||
);
|
);
|
||||||
@ -2818,6 +2820,7 @@
|
|||||||
packageProductDependencies = (
|
packageProductDependencies = (
|
||||||
51BC2F3724D3439A00E90810 /* Account */,
|
51BC2F3724D3439A00E90810 /* Account */,
|
||||||
84D9582B2BABE53B0053E7B2 /* FoundationExtras */,
|
84D9582B2BABE53B0053E7B2 /* FoundationExtras */,
|
||||||
|
841CECDD2BAD06D10001EE72 /* Tree */,
|
||||||
);
|
);
|
||||||
productName = "NetNewsWire iOS Share Extension";
|
productName = "NetNewsWire iOS Share Extension";
|
||||||
productReference = 513C5CE6232571C2003D4054 /* NetNewsWire iOS Share Extension.appex */;
|
productReference = 513C5CE6232571C2003D4054 /* NetNewsWire iOS Share Extension.appex */;
|
||||||
@ -4930,6 +4933,10 @@
|
|||||||
isa = XCSwiftPackageProductDependency;
|
isa = XCSwiftPackageProductDependency;
|
||||||
productName = Tree;
|
productName = Tree;
|
||||||
};
|
};
|
||||||
|
841CECDD2BAD06D10001EE72 /* Tree */ = {
|
||||||
|
isa = XCSwiftPackageProductDependency;
|
||||||
|
productName = Tree;
|
||||||
|
};
|
||||||
8438C2DA2BABE0B00040C9EE /* CoreResources */ = {
|
8438C2DA2BABE0B00040C9EE /* CoreResources */ = {
|
||||||
isa = XCSwiftPackageProductDependency;
|
isa = XCSwiftPackageProductDependency;
|
||||||
productName = CoreResources;
|
productName = CoreResources;
|
||||||
|
@ -41,7 +41,7 @@ struct SidebarItemNode: Hashable {
|
|||||||
var node: Node
|
var node: Node
|
||||||
var sidebarItemID: SidebarItemIdentifier
|
var sidebarItemID: SidebarItemIdentifier
|
||||||
|
|
||||||
init(_ node: Node) {
|
@MainActor init(_ node: Node) {
|
||||||
self.node = node
|
self.node = node
|
||||||
self.sidebarItemID = (node.representedObject as! SidebarItem).sidebarItemID!
|
self.sidebarItemID = (node.representedObject as! SidebarItem).sidebarItemID!
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user