mirror of
				https://github.com/TeamPiped/Piped-Backend.git
				synced 2024-08-14 23:51:41 +00:00 
			
		
		
		
	Fix missing transaction when trying to insert new videos in a playlist
This commit is contained in:
		
							parent
							
								
									0b9c96e910
								
							
						
					
					
						commit
						5676881ec1
					
				
					 1 changed files with 9 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -255,7 +255,15 @@ public class AuthPlaylistHandlers {
 | 
			
		|||
 | 
			
		||||
                        video = new PlaylistVideo(videoId, info.getName(), info.getThumbnailUrl(), info.getDuration(), channel);
 | 
			
		||||
 | 
			
		||||
                        s.persist(video);
 | 
			
		||||
                        var tr = s.beginTransaction();
 | 
			
		||||
                        try {
 | 
			
		||||
                            s.persist(video);
 | 
			
		||||
                            tr.commit();
 | 
			
		||||
                        } catch (Exception e) {
 | 
			
		||||
                            tr.rollback();
 | 
			
		||||
                            ExceptionHandler.handle(e);
 | 
			
		||||
                            continue;
 | 
			
		||||
                        }
 | 
			
		||||
                    } catch (Exception e) {
 | 
			
		||||
                        ExceptionHandler.handle(e);
 | 
			
		||||
                        continue;
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue