Skip to content

Commit

Permalink
socioboard 3.0
Browse files Browse the repository at this point in the history
Bug Fixes and minor changes
  • Loading branch information
socioboard committed May 3, 2017
1 parent 51352b3 commit 0c4e059
Show file tree
Hide file tree
Showing 107 changed files with 1,085 additions and 28,614 deletions.
Binary file modified .vs/Socioboard/v14/.suo
Binary file not shown.
20 changes: 18 additions & 2 deletions .vs/config/applicationhost.config
Original file line number Diff line number Diff line change
Expand Up @@ -162,15 +162,15 @@
</site>
<site name="Socioboard" id="2">
<application path="/" applicationPool="Clr4IntegratedAppPool">
<virtualDirectory path="/" physicalPath="D:\socioboardgithub\Socioboard-Core-3.0\src\Socioboard" />
<virtualDirectory path="/" physicalPath="E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Socioboard" />
</application>
<bindings>
<binding protocol="http" bindingInformation="*:9821:localhost" />
</bindings>
</site>
<site name="Api.Socioboard" id="3">
<application path="/" applicationPool="Clr4IntegratedAppPool">
<virtualDirectory path="/" physicalPath="D:\socioboardgithub\Socioboard-Core-3.0\src\Api.Socioboard" />
<virtualDirectory path="/" physicalPath="E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Api.Socioboard" />
</application>
<bindings>
<binding protocol="http" bindingInformation="*:6361:localhost" />
Expand All @@ -192,6 +192,22 @@
<binding protocol="http" bindingInformation="*:6361:localhost" />
</bindings>
</site>
<site name="Api.Socioboard(2)" id="6">
<application path="/" applicationPool="Clr4IntegratedAppPool">
<virtualDirectory path="/" physicalPath="E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Api.Socioboard" />
</application>
<bindings>
<binding protocol="http" bindingInformation="*:6361:localhost" />
</bindings>
</site>
<site name="Socioboard(2)" id="7">
<application path="/" applicationPool="Clr4IntegratedAppPool">
<virtualDirectory path="/" physicalPath="E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Socioboard" />
</application>
<bindings>
<binding protocol="http" bindingInformation="*:9821:localhost" />
</bindings>
</site>
<siteDefaults>
<logFile logFormat="W3C" directory="%IIS_USER_HOME%\Logs" />
<traceFailedRequestsLogging directory="%IIS_USER_HOME%\TraceLogFiles" enabled="true" maxLogFileSizeKB="1024" />
Expand Down
5 changes: 4 additions & 1 deletion src/Api.Socioboard/Controllers/SocialMessagesController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,10 @@ public async Task<ActionResult> ScheduleMessage(string message, string profileId
}
}
}
message = postmessage.Replace(link, ""); ;
if (!string.IsNullOrEmpty(link))
{
message = postmessage.Replace(link, ""); ;
}

DatabaseRepository dbr = new DatabaseRepository(_logger, _appEnv);
string[] lstProfileIds = null;
Expand Down
10 changes: 9 additions & 1 deletion src/Api.Socioboard/Helper/ScheduleMessageHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,16 @@ public static string ScheduleMessage(string profileId, string socialprofileName,


ScheduledMessage scheduledMessage = new ScheduledMessage();
DateTime userlocalscheduletime = new DateTime();
scheduledMessage.shareMessage = shareMessage;
DateTime userlocalscheduletime = DateTime.Parse(localscheduletime);
try
{
userlocalscheduletime = DateTime.Parse(localscheduletime);
}
catch (Exception)
{
userlocalscheduletime = DateTime.Now;
}
try
{
_logger.LogError("ScheduleMessageHelperscheduleTime>>>>" + scheduleTime);
Expand Down
Binary file modified src/Api.Socioboard/bin/Debug/net451/Api.Socioboard.exe
Binary file not shown.
Binary file modified src/Api.Socioboard/bin/Debug/net451/Api.Socioboard.pdb
Binary file not shown.
Binary file modified src/Api.Socioboard/bin/Debug/net451/win7-x64/Api.Socioboard.exe
Binary file not shown.
Binary file modified src/Api.Socioboard/bin/Debug/net451/win7-x64/Api.Socioboard.pdb
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
3,680 changes: 0 additions & 3,680 deletions src/Api.Socioboard/wwwroot/log/log-20161209.txt

This file was deleted.

480 changes: 0 additions & 480 deletions src/Api.Socioboard/wwwroot/log/log-20161210.txt

This file was deleted.

7,248 changes: 0 additions & 7,248 deletions src/Api.Socioboard/wwwroot/log/log-20161212.txt

This file was deleted.

1,221 changes: 0 additions & 1,221 deletions src/Api.Socioboard/wwwroot/log/log-20161214.txt

This file was deleted.

5,147 changes: 0 additions & 5,147 deletions src/Api.Socioboard/wwwroot/log/log-20161215.txt

This file was deleted.

24 changes: 0 additions & 24 deletions src/Api.Socioboard/wwwroot/log/log-20161216.txt

This file was deleted.

Loading

0 comments on commit 0c4e059

Please sign in to comment.