Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/record.py
diff options
context:
space:
mode:
authorerikb <erikb@574bc980-5f2d-0410-acbc-c8f9f0eb14e0>2007-11-03 10:14:54 (GMT)
committer erikb <erikb@574bc980-5f2d-0410-acbc-c8f9f0eb14e0>2007-11-03 10:14:54 (GMT)
commitf3fcedfbf5aabf6a9023af336412ef7dbe0c0f4c (patch)
treeda52e66bbba20e60247418256a487eeb980c1a3f /record.py
parent312c709b7bd01f5031eb88c601b03204b35554be (diff)
logic in can i play !downloaded fixed
git-svn-id: http://mediamods.com/public-svn/camera-activity/Record.activity@866 574bc980-5f2d-0410-acbc-c8f9f0eb14e0
Diffstat (limited to 'record.py')
-rwxr-xr-xrecord.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/record.py b/record.py
index 9fe2601..b9103f6 100755
--- a/record.py
+++ b/record.py
@@ -296,13 +296,14 @@ class Record(activity.Activity):
def requestMeshDownload( self, recd ):
+ if (recd.meshDownloading):
+ return True
+
#this call will get the bits or request the bits if they're not available
if (recd.buddy and (not recd.downloadedFromBuddy)):
-
- if (not recd.meshDownloading):
- self.meshInitRoundRobin(recd)
-
+ self.meshInitRoundRobin(recd)
return True
+
else:
return False