commit/galaxy-central: jgoecks: Fix decode issues with library datasets in Trackster.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/changeset/45bd2e0fe8d0/ changeset: 45bd2e0fe8d0 user: jgoecks date: 2012-04-18 21:09:36 summary: Fix decode issues with library datasets in Trackster. affected #: 1 file diff -r 9e9f489c6488e63a5d8b86ae64a81c9b4ddd306d -r 45bd2e0fe8d0eae68a82d3a141ebfc20d0ae7b2e lib/galaxy/web/base/controller.py --- a/lib/galaxy/web/base/controller.py +++ b/lib/galaxy/web/base/controller.py @@ -322,7 +322,7 @@ if hda_ldda == "hda": dataset = self.get_dataset( trans, dataset_id, check_ownership=False, check_accessible=True ) else: - dataset = trans.sa_session.query( trans.app.model.LibraryDatasetDatasetAssociation ).get( trans.security.decode_id(dataset_id) ) + dataset = trans.sa_session.query( trans.app.model.LibraryDatasetDatasetAssociation ).get( dataset_id ) try: prefs = track_dict['prefs'] Repository URL: https://bitbucket.org/galaxy/galaxy-central/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.
participants (1)
-
Bitbucket