Skip to content

Commit

Permalink
bump ver 2.6.0
Browse files Browse the repository at this point in the history
downgrade apache thrift to 0.14.2
  • Loading branch information
huynhsontung committed Dec 23, 2021
1 parent 49469a7 commit 236c2d6
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion Indirect/Package.appxmanifest
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<Identity
Name="18496Starpine.Indirect"
Publisher="CN=ABCDF790-DBE4-48F7-8204-32FCB69ADF9C"
Version="2.5.4.0" />
Version="2.6.0.0" />

<mp:PhoneIdentity PhoneProductId="9e065600-b6ac-45a5-9ec4-71d4b54ce3fe" PhonePublisherId="00000000-0000-0000-0000-000000000000"/>

Expand Down
38 changes: 19 additions & 19 deletions Indirect/Pages/ContactPanelPage.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,28 +42,28 @@ protected override async void OnNavigatedTo(NavigationEventArgs e)
if (_thread != null)
{
ViewModel.SecondaryThreads.Add(_thread);
await OptionallyStartRealtimeClient().ConfigureAwait(false);
//await OptionallyStartRealtimeClient().ConfigureAwait(false);
}
}

private async Task OptionallyStartRealtimeClient()
{
//if (ViewModel.RealtimeClient.Running) return;
//var seqId = ViewModel.Inbox.SeqId;
//var snapshotAt = ViewModel.Inbox.SnapshotAt;
//if (seqId == default || snapshotAt == default)
//{
// var result = await ViewModel.InstaApi.GetInboxInfoAsync();
// if (result.IsSucceeded)
// {
// await ViewModel.RealtimeClient.Start(result.Value.SeqId, result.Value.SnapshotAt);
// }
//}
//else
//{
// await ViewModel.RealtimeClient.Start(seqId, snapshotAt);
//}
}
//private async Task OptionallyStartRealtimeClient()
//{
// if (ViewModel.RealtimeClient.Running) return;
// var seqId = ViewModel.Inbox.SeqId;
// var snapshotAt = ViewModel.Inbox.SnapshotAt;
// if (seqId == default || snapshotAt == default)
// {
// var result = await ViewModel.InstaApi.GetInboxInfoAsync();
// if (result.IsSucceeded)
// {
// await ViewModel.RealtimeClient.Start(result.Value.SeqId, result.Value.SnapshotAt);
// }
// }
// else
// {
// await ViewModel.RealtimeClient.Start(seqId, snapshotAt);
// }
//}

private void ContactPanelOnClosing(ContactPanel sender, ContactPanelClosingEventArgs args)
{
Expand Down
2 changes: 1 addition & 1 deletion InstagramAPI/InstagramAPI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="ApacheThrift">
<Version>0.15.0</Version>
<Version>0.14.2</Version>
</PackageReference>
<PackageReference Include="DotNetZip">
<Version>1.16.0</Version>
Expand Down

0 comments on commit 236c2d6

Please sign in to comment.