File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
packages/common/src/client/sync/stream Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -141,7 +141,8 @@ jobs:
141141 - name : Set up XCode
142142 uses : maxim-lobanov/setup-xcode@v1
143143 with :
144- xcode-version : latest-stable
144+ # TODO: Update to latest-stable once GitHub has simulators compatible with XCode 26
145+ xcode-version : ' ^16.4.0'
145146
146147 - name : CocoaPods Cache
147148 uses : actions/cache@v3
Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ function priorityToJs(status: SyncPriorityStatus): sync_status.SyncPriorityStatu
7474 return {
7575 priority : status . priority ,
7676 hasSynced : status . has_synced ?? undefined ,
77- lastSyncedAt : status ?. last_synced_at != null ? new Date ( status ! . last_synced_at ! * 1000 ) : undefined
77+ lastSyncedAt : status ?. last_synced_at != null ? new Date ( status . last_synced_at * 1000 ) : undefined
7878 } ;
7979}
8080
You can’t perform that action at this time.
0 commit comments