-
Notifications
You must be signed in to change notification settings - Fork 262
Fix #889: Compilation errors on master #890
Fix #889: Compilation errors on master #890
Conversation
Blockzilla.xcodeproj/project.pbxproj: I just said 'YES' to upgrading the file, hence the changes. |
TPStatsBlocklistChecker.shared.isBlocked(url: url, enabledLists: enabled).uponQueue(.main) { listItem in | ||
if let listItem = listItem { | ||
self.trackingInformation = self.trackingInformation.create(byAddingListItem: listItem) | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The above block of code was sitting on my computer locally, I missed pushing it up with my PR for upgrading the TP code.
@@ -44,15 +44,17 @@ class WebViewController: UIViewController, WebController { | |||
private var browserView = WKWebView() | |||
var onePasswordExtensionItem: NSExtensionItem! | |||
private var progressObserver: NSKeyValueObservation? | |||
fileprivate var trackingProtecitonStatus = TrackingProtectionStatus.on(TrackingInformation()) { | |||
private var trackingProtectionStatus = TrackingProtectionStatus.on(TPPageStats()) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TrackingInformation is now called TPPageStats. This was another change that was part of my TP PR that was committed locally and not pushed. In future, we need CI running on my commits, I just assumed they were without checking if that was the case.
Hold on, I had better clean my carthage and rebuild one more time to make sure I am using vanilla master. |
fc6ab9f
to
0f9be22
Compare
I am going to break the law here and land this on master so I can quickly confirm this builds on BB |
This builds with Xcode 9.3.1, turns out, this was due to a missing commit on my PR #869