Fetch max 1 link per message

This commit is contained in:
Mattias Erming 2014-12-12 00:48:43 +01:00
parent 4fcd21ccff
commit 67f6e526f2
2 changed files with 8 additions and 6 deletions

View File

@ -652,6 +652,9 @@ button {
}
#chat .toggle-content .body {
color: #999;
max-width: 460px;
word-break: normal;
word-wrap: break-word;
}
#chat .toggle-content.show {
display: inline-block !important;

View File

@ -11,7 +11,7 @@ module.exports = function(irc, network) {
if (!config.prefetch) {
return;
}
var links = [];
var split = data.message.split(" ");
_.each(split, function(w) {
@ -41,10 +41,9 @@ module.exports = function(irc, network) {
msg: msg
});
_.each(links, function(url) {
fetch(url, function(res) {
parse(msg, url, res, client);
});
var link = links[0];
fetch(link, function(res) {
parse(msg, link, res, client);
});
});
};
@ -68,7 +67,7 @@ function parse(msg, url, res, client) {
$('meta[name=description]').attr('content')
|| $('meta[property="og:description"]').attr('content')
|| "No description found.";
toggle.thumb =
toggle.thumb =
$('meta[property="og:image"]').attr('content')
|| $('meta[name="twitter:image:src"]').attr('content')
|| "";