Skip to content

Commit

Permalink
Fixes #53 and a minor error that occurs on first time use
Browse files Browse the repository at this point in the history
  • Loading branch information
WillStrohl committed Sep 2, 2015
1 parent 10e24b8 commit e18cc7a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Modules/DNNHangout/DNNHangout.dnn
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<package name="DNNHangout" type="Module" version="01.00.02">
<friendlyName>DNN Hangout</friendlyName>
<description>Google Hangout module for DNN</description>
<iconFile>/DesktopModules/DNNHangout/Images/hangouts-icon.png</iconFile>
<iconFile>DesktopModules/DNNHangout/Images/hangouts-icon.png</iconFile>
<owner>
<name>Will Strohl</name>
<organization>WillStrohl.com</organization>
Expand All @@ -15,6 +15,7 @@
<dependencies>
<dependency type="CoreVersion">07.02.00</dependency>
</dependencies>
<azureCompatible>true</azureCompatible>

<components>

Expand Down
2 changes: 1 addition & 1 deletion Modules/DNNHangout/Edit.ascx.cs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ protected void lnkUpdate_Click(object o, EventArgs e)

private void ClearCache()
{
if (Hangout.ContentItemId <= Null.NullInteger) return;
if (Hangout == null || Hangout.ContentItemId <= Null.NullInteger) return;

var ctl = new DNNHangoutController();
ctl.ClearCachedTemplate(Hangout.ContentItemId);
Expand Down
1 change: 1 addition & 0 deletions Modules/DNNHangout/ReleaseNotes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
<li>Bug: <a href="https://github.com/hismightiness/dnnextensions/issues/45" target="_blank">Updating a hangout doesn't save the hangout</a></li>
<li>Bug: <a href="https://github.com/hismightiness/dnnextensions/issues/47" target="_blank">Issues saving hangouts with querystrings in the URL</a></li>
<li>Bug: <a href="https://github.com/hismightiness/dnnextensions/issues/52" target="_blank">JSON serialization issue causes wrong date to be displayed</a></li>
<li>Bug: <a href="https://github.com/hismightiness/dnnextensions/issues/53" target="_blank">Module icon is broken</a></li>
</ul>

<p>For more information about this, previous, and future releases of this module, <a href="http://dnnhangout.codeplex.com" target="_blank">visit the project website</a>.</p>
Expand Down

0 comments on commit e18cc7a

Please sign in to comment.