libvideosite: send "default" to remote color API for default colors instead of undef
authorRalf Ertzinger <ralf@skytale.net>
Tue, 30 Apr 2013 17:19:54 +0000 (19:19 +0200)
committerRalf Ertzinger <ralf@skytale.net>
Tue, 30 Apr 2013 17:19:54 +0000 (19:19 +0200)
libvideosite.pm

index ace6f81..12fa603 100644 (file)
@@ -183,6 +183,9 @@ sub _recursive_hash_walk {
 sub _colorpair {
     my ($fg, $bg) = @_;
 
+    $fg = defined($fg)?$fg:'default';
+    $bg = defined($bg)?$bg:'default';
+
     return $remote_api->{color}->($fg, $bg);
 }