Skip to content

Commit

Permalink
fix sanitizer exception on null string
Browse files Browse the repository at this point in the history
  • Loading branch information
aliasaria committed Mar 12, 2011
1 parent 3ad5133 commit 30860ab
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 13 deletions.
15 changes: 7 additions & 8 deletions client/script.js
@@ -1,7 +1,7 @@
var cards = {};
var totalcolumns = 0;
var columns = [];
var currentStyle = "bigcards";
var currentTheme = "bigcards";


var socket = new io.Socket( );
Expand Down Expand Up @@ -448,6 +448,7 @@ function initColumns( columnArray )

function changeThemeTo( theme )
{
currentTheme = theme;
$("link[title=cardsize]").attr("href", "/css/" + theme + ".css");
}

Expand Down Expand Up @@ -556,23 +557,21 @@ $(function() {

// Style changer
$("#smallify").click(function(){
if (currentStyle == "bigcards")
if (currentTheme == "bigcards")
{
currentStyle = "smallcards";
changeThemeTo('smallcards');
}
else if (currentStyle == "smallcards")
else if (currentTheme == "smallcards")
{
currentStyle = "bigcards";
changeThemeTo('bigcards');
}
/*else if (currentStyle == "nocards")
/*else if (currentTheme == "nocards")
{
currentStyle = "bigcards";
currentTheme = "bigcards";
$("link[title=cardsize]").attr("href", "css/bigcards.css");
}*/

sendAction('changeTheme', currentStyle);
sendAction('changeTheme', currentTheme);


return false;
Expand Down
Empty file modified forever.sh 100644 → 100755
Empty file.
17 changes: 12 additions & 5 deletions server.js
Expand Up @@ -106,14 +106,21 @@ socket.on('connection', function(client){

//santizes text
function scrub( text ) {
if (typeof text != "undefined" && text !== null)
{

//clip the string if it is too long
if (text.length > 65535)
{
text = text.substr(0,65535);
}

//clip the string if it is too long
if (text.length > 65535)
return sanitizer.sanitize(text);
}
else
{
text = text.substr(0,65535);
return null;
}

return sanitizer.sanitize(text);
}


Expand Down

0 comments on commit 30860ab

Please sign in to comment.