Skip to content
This repository was archived by the owner on Dec 29, 2021. It is now read-only.

Commit a422188

Browse files
committed
Fixes #175 (Broken Hangouts link)
1 parent 2f27c11 commit a422188

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/browser_action.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -328,9 +328,9 @@ browseraction.createEventDiv_ = function(event) {
328328
.addClass('event-details')
329329
.appendTo(eventDiv);
330330

331-
if (event.video_call_url) {
331+
if (event.hangout_url) {
332332
$('<a>').attr({
333-
'href': event.video_call_url,
333+
'href': event.hangout_url,
334334
'target': '_blank'
335335
}).append($('<img>').addClass('video-call-icon').attr({
336336
'src': chrome.extension.getURL('icons/ic_action_video.png')

src/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifest_version": 2,
33
"name": "__MSG_google_calendar_extension_name__",
44
"description": "__MSG_google_calendar_extension_desc__",
5-
"version": "1.5.2",
5+
"version": "1.5.3",
66
"default_locale": "en",
77
"key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCzO8gAn6n4s5Ohs50F2lmLGsO0FVKIwYyro8qZHlU+9pF85wGBEqoNwSeawr+AZdLgtnQRkIgatLM68EX8sB0DErp3Ds4qCvY8VufvvDIoqxdKtC3QlFxR9PoUZMY7/4lb/OadWnr0UjekxcSNVyk6nqZkTFCcE7RWDMDZ8qwqsQIDAQAB",
88

0 commit comments

Comments
 (0)