Closed (fixed)
Project:
Skype
Version:
7.x-1.0
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
28 Mar 2016 at 15:08 UTC
Updated:
28 Apr 2016 at 06:24 UTC
Jump to comment: Most recent
Hi,
I run my site exclusively over HTTPS. I realised the module calls http://www.skypeassets.com/i/scom/js/skype-uri.js over HTTP (hardcoded). Therefore my browser blocks the call because of mixed content.
I'd suggest doing one of the following:
IMHO I'd simply go for option 1 above.
Thanks for a little great module.
Regards,
Luca
Comments
Comment #2
rv0 commentedYou generally just use protocol-independant calls in drupal_add_js / attach code. So normally just the "http:" part should be removed.
However, that doesn't work
You'll get an error:
https://www.skypeassets.com/i/scom/js/skype-uri.js Failed to load resource: net::ERR_INSECURE_RESPONSEThe reason is skype uses a special url for https, namely
https://secure.skypeassets.com/i/scom/js/skype-uri.jsWorks fine with that code. No patch as I only need the skype_uri formatter, but I hope this info is helpful to someone.
Comment #5
robin.ingelbrecht commentedFixed this issue for version D7 and D8