Skip to content

Commit

Permalink
Fixes timezone calendar bug
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisjrn committed Jan 28, 2016
1 parent 5725dc0 commit ccab2ab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion android/app/src/main/java/org/s31/oscon2012/Config.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@

public class Config {

public static TimeZone confTimeZone = TimeZone.getTimeZone("America/Los_Angeles"); // The timezone for the conference
public static TimeZone confTimeZone = TimeZone.getTimeZone("Australia/Melbourne"); // The timezone for the conference

}
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ public void setShareIntent() {
Intent i = new Intent(Intent.ACTION_SEND);
i.setType("text/*");
i.putExtra(Intent.EXTRA_TITLE, mTitle);
i.putExtra(Intent.EXTRA_TEXT, String.format("%s - %s #lessbad #lca2016", mTitle, mUrl));
i.putExtra(Intent.EXTRA_TEXT, String.format("%s - %s #lca2016", mTitle, mUrl));
if (mShareActionProvider != null) {
mShareActionProvider.setShareIntent(i);
}
Expand Down

0 comments on commit ccab2ab

Please sign in to comment.