aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomáš Čech <sleep_walker@suse.cz>2013-04-03 00:54:35 +0200
committerTomáš Čech <sleep_walker@suse.cz>2013-04-03 00:54:35 +0200
commit74b0f6f18e68eaf5428d2a70b9ff72baac05a06f (patch)
treec30da730ab27695fe37396a20220ad6cfffa63c6
parent21b092718a816f233a911ec84f5bdae2d2296274 (diff)
downloadget-flash-videos-74b0f6f18e68eaf5428d2a70b9ff72baac05a06f.tar.gz
fixing string comparison
-rw-r--r--lib/FlashVideo/Site/Vk.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/FlashVideo/Site/Vk.pm b/lib/FlashVideo/Site/Vk.pm
index 72a041c..b2a731f 100644
--- a/lib/FlashVideo/Site/Vk.pm
+++ b/lib/FlashVideo/Site/Vk.pm
@@ -22,7 +22,7 @@ sub find_video {
# if the URL contains undecoded HTML entities, we have the wrong URL
# and need to get proper one
- if ($embed_url != $new_embed_url) {
+ if ($embed_url ne $new_embed_url) {
info ("URI with encoded entities... re-GETing");
$embed_url = $new_embed_url;
$reget = 1;