Skip to content

Commit

Permalink
Updated Octgn.Site.Api
Browse files Browse the repository at this point in the history
  • Loading branch information
kellyelton committed Aug 16, 2013
1 parent c003776 commit 173f3a4
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
4 changes: 4 additions & 0 deletions octgnFX/Octgn/Octgn.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,10 @@
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\packages\NuGet.Core.2.5.0\lib\net40-Client\NuGet.Core.dll</HintPath>
</Reference>
<Reference Include="Octgn.Site.Api, Version=1.0.1.29, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\packages\Octgn.Site.Api.1.0.1.29\lib\net40\Octgn.Site.Api.dll</HintPath>
</Reference>
<Reference Include="Polenter.SharpSerializer, Version=2.18.0.0, Culture=neutral, PublicKeyToken=8f4f20011571ee5f, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\packages\SharpSerializer.2.18\lib\net20\Polenter.SharpSerializer.dll</HintPath>
Expand Down
4 changes: 2 additions & 2 deletions octgnFX/Octgn/SubscriptionModule.cs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ internal void UpdateIsSubbed()
if (Program.LobbyClient.IsConnected)
{
var client = new ApiClient();
var res = client.IsSubbed(Program.LobbyClient.Me.UserName);
var res = client.IsSubbed(Program.LobbyClient.Me.UserName,Prefs.Password);
switch (res)
{
case IsSubbedResult.Ok:
Expand All @@ -96,7 +96,7 @@ internal void UpdateIsSubbed()
else
{
var client = new ApiClient();
var res = client.IsSubbed(Prefs.Username);
var res = client.IsSubbed(Prefs.Username, Prefs.Password);
switch (res)
{
case IsSubbedResult.Ok:
Expand Down
4 changes: 4 additions & 0 deletions octgnFX/Skylabs.Lobby/Skylabs.Lobby.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,10 @@
<Reference Include="Newtonsoft.Json">
<HintPath>..\..\packages\Newtonsoft.Json.4.5.11\lib\net40\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="Octgn.Site.Api, Version=1.0.1.29, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\packages\Octgn.Site.Api.1.0.1.29\lib\net40\Octgn.Site.Api.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml" />
Expand Down

0 comments on commit 173f3a4

Please sign in to comment.